반응형
안드로이드를 개발하다보면 기능 확인용으로 간단한 앱을 만드는 일이 잦다.
버튼 하나 짜리 앱을 만들 경우
<디자인>
상단에 TextView 한개, 하단에 Button을 한개 배치했음.
<코드>
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) Facebook, Inc. and its affiliates. -->
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<TextView
android:id="@+id/speechTranscription"
android:hint="Speech transcription will appear here"
android:textSize="28sp"
android:textAlignment="center"
android:padding="12dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.207" />
<Button
android:id="@+id/speakButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="12dp"
android:text="Speak"
android:textSize="28sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintHorizontal_bias="0.498"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.726" />
</androidx.constraintlayout.widget.ConstraintLayout>
반응형
'Android > 기본기능' 카테고리의 다른 글
[Android] ADB를 윈도우10 환경변수로 등록하기 (0) | 2023.05.24 |
---|---|
[Android] 앱 버전명 관리 (0) | 2023.02.23 |
[Android] 딜레이 후에 실행하고 싶을 때 - Handler postDelayed 사용법 (0) | 2023.02.20 |
[Android] Android platform (API 30)에서 빌드가 되는 Test app 기본구조 (0) | 2023.02.16 |
[Android] 인텐트로 구글 기본 앱 연동하기 (0) | 2023.02.09 |
댓글