07-23 Basic Code

Ruinak·2021년 7월 23일
0

Android Lesson

목록 보기
2/26
<?xml version="1.0" encoding="utf-8"?>
<androidx.appcompat.widget.LinearLayoutCompat
    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"
    android:orientation="vertical"
    tools:context=".MainActivity">

    <androidx.appcompat.widget.LinearLayoutCompat
        android:layout_weight="1"
        android:layout_width="match_parent"
        android:layout_height="0px">

        <Button
            android:id="@+id/button"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:text="Button" />

    </androidx.appcompat.widget.LinearLayoutCompat>

    <androidx.appcompat.widget.LinearLayoutCompat
        android:layout_weight="1"
        android:layout_width="match_parent"
        android:layout_height="0px"
        android:orientation="vertical">

        <Button
            android:id="@+id/button2"
            android:layout_weight="1"
            android:layout_width="match_parent"
            android:layout_height="0px"
            android:text="Button" />

        <Button
            android:id="@+id/button3"
            android:layout_weight="1"
            android:layout_width="match_parent"
            android:layout_height="0px"
            android:text="Button" />

        <Button
            android:id="@+id/button4"
            android:layout_weight="1"
            android:layout_width="match_parent"
            android:layout_height="0px"
            android:text="Button" />

        <Button
            android:id="@+id/button5"
            android:layout_weight="1"
            android:layout_width="match_parent"
            android:layout_height="0px"
            android:text="Button" />

        <Button
            android:id="@+id/button6"
            android:layout_weight="1"
            android:layout_width="match_parent"
            android:layout_height="0px"
            android:text="Button" />

        <Button
            android:id="@+id/button7"
            android:layout_weight="1"
            android:layout_width="match_parent"
            android:layout_height="0px"
            android:text="Button" />

    </androidx.appcompat.widget.LinearLayoutCompat>

</androidx.appcompat.widget.LinearLayoutCompat>
profile
Nil Desperandum <절대 절망하지 마라>

0개의 댓글