개발/코뮤니티

[앱 안드로이드] 6일차 : 앱 레이아웃 만들기

Hyunsun 2021. 11. 17. 11:21
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>

 

결과

 

 

안드로이드 APP 메이트 - 코틀린 기초편 :: #6-1. Linear Layout 추가하기 | 코드메이트

📌 Layout 중첩하기 - Linear Layout 사용하기 저번 시간엔 Layout에 대해 알아 봤습니다. 오늘은 Constraint Layout 안에 Linear Layout 을 중첩하고 그 안에 버튼을 배치하는 실습 과정입니다. 📌 레이아웃 추

codemate.kr

 

728x90