본문 바로가기
Android Studio

안드로이드 #5 : 전화걸기 화면 만들어보기(레이아웃 실습) 230303

by haheehee 2023. 3. 3.
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:layout_centerHorizontal="true">
        <ImageView
            android:layout_width="15dp"
            android:layout_height="wrap_content"
            android:src="@drawable/add"
            android:tint="#5CD154"
            android:layout_marginRight="-10dp"/>
        <Button
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:text="연락처에 추가"
            android:background="#00ff0000"
            android:textColor="#5CD154"
            android:textSize="15dp"
            android:textStyle="bold"/>
    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        android:gravity="center">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="02-120"
            android:textSize="40dp"
            android:layout_margin="10dp"  />

        <GridLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="horizontal"
            android:columnCount="3" >

            <Button android:text="1"
                android:background="#00ff0000"
                android:textColor="#808080"
                android:textSize="30dp"
                android:textStyle="bold"
                android:layout_margin="5dp"/>
            <Button android:text="2"
                android:background="#00ff0000"
                android:textColor="#808080"
                android:textSize="30dp"
                android:textStyle="bold"
                android:layout_margin="5dp"/>
            <Button android:text="3"
                android:background="#00ff0000"
                android:textColor="#808080"
                android:textSize="30dp"
                android:textStyle="bold"
                android:layout_margin="5dp"/>
            <Button android:text="4"
                android:background="#00ff0000"
                android:textColor="#808080"
                android:textSize="30dp"
                android:textStyle="bold"
                android:layout_margin="5dp"/>
            <Button android:text="5"
                android:background="#00ff0000"
                android:textColor="#808080"
                android:textSize="30dp"
                android:textStyle="bold"
                android:layout_margin="5dp"/>
            <Button android:text="6"
                android:background="#00ff0000"
                android:textColor="#808080"
                android:textSize="30dp"
                android:textStyle="bold"
                android:layout_margin="5dp"/>
            <Button android:text="7"
                android:background="#00ff0000"
                android:textColor="#808080"
                android:textSize="30dp"
                android:textStyle="bold"
                android:layout_margin="5dp"/>
            <Button android:text="8"
                android:background="#00ff0000"
                android:textColor="#808080"
                android:textSize="30dp"
                android:textStyle="bold"
                android:layout_margin="5dp"/>
            <Button android:text="9"
                android:background="#00ff0000"
                android:textColor="#808080"
                android:textSize="30dp"
                android:textStyle="bold"
                android:layout_margin="5dp"/>
            <Button android:text="*"
                android:background="#00ff0000"
                android:textColor="#808080"
                android:textSize="30dp"
                android:textStyle="bold"
                android:layout_margin="5dp"/>
            <Button android:text="0"
                android:background="#00ff0000"
                android:textColor="#808080"
                android:textSize="30dp"
                android:textStyle="bold"
                android:layout_margin="5dp"/>
            <Button android:text="# "
                android:background="#00ff0000"
                android:textColor="#808080"
                android:textSize="30dp"
                android:textStyle="bold"
                android:layout_margin="5dp"/>
        </GridLayout>

        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="horizontal">
            <ImageView
                android:layout_width="70dp"
                android:layout_height="70dp"
                android:src="@drawable/video"
                android:padding="10dp" />
            <ImageView
                android:layout_width="70dp"
                android:layout_height="70dp"
                android:src="@drawable/call"
                android:padding="10dp" />
            <ImageView
                android:layout_width="70dp"
                android:layout_height="70dp"
                android:src="@drawable/back"
                android:padding="10dp" />
        </LinearLayout>
    </LinearLayout>
</RelativeLayout>

댓글