728x90
코뮤니티 모각코+ 앱 안드로이드 출석 인증 6일차
✅ 오늘의 문제 : 앱 레이아웃 만들기
👉 여러분의 xml 코드와 실행 결과 캡쳐 이미지를 올려주세요.
✔ 총 6개의 버튼을 만들어주세요. (이 버튼에 로또 번호가 표시됩니다!)
코드
<?xml version="1.0" encoding="utf-8"?>
<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">
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/floatingActionButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:clickable="true"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
android:layout_marginEnd="32dp"
android:layout_marginBottom="32dp"
app:srcCompat="@android:drawable/ic_menu_rotate" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<Button
android:id="@+id/button1"
android:layout_width="70dp"
android:layout_height="80dp"
android:backgroundTint="#99C8C2C2"
app:cornerRadius="80dp" />
<Button
android:id="@+id/button2"
android:layout_width="70dp"
android:layout_height="80dp"
android:backgroundTint="#99C8C2C2"
app:cornerRadius="80dp" />
<Button
android:id="@+id/button3"
android:layout_width="70dp"
android:layout_height="80dp"
android:backgroundTint="#99C8C2C2"
app:cornerRadius="80dp" />
<Button
android:id="@+id/button4"
android:layout_width="70dp"
android:layout_height="80dp"
android:backgroundTint="#99C8C2C2"
app:cornerRadius="80dp" />
<Button
android:id="@+id/button5"
android:layout_width="70dp"
android:layout_height="80dp"
android:backgroundTint="#99C8C2C2"
app:cornerRadius="80dp" />
<Button
android:id="@+id/button6"
android:layout_width="70dp"
android:layout_height="80dp"
android:backgroundTint="#99C8C2C2"
app:cornerRadius="80dp" />
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
결과
728x90
'개발 > 코뮤니티' 카테고리의 다른 글
[앱 안드로이드] 7일차 : 6개 버튼 텍스트, 색깔 변경하기 (0) | 2021.11.18 |
---|---|
[앱 안드로이드] 5일차 : 버튼 만들기 (0) | 2021.11.16 |
[앱 안드로이드] 4일차 : 앱의 문구 바꾸기 (0) | 2021.11.15 |