개발/책

[안드로이드 프로그래밍] 4장 직접 풀어보기 4-2

Hyunsun 2021. 9. 27. 22:38
728x90
한빛아카데미 Android Studio를 활용한 안드로이드 프로그래밍 6판

 

p.167 직접 풀어보기 4-2

 

다음과 같은 화면을 XML로 코딩하라. 버튼, 텍스트뷰, 에디트텍스트, 버튼을 차례로 지정하고 앞에서 배운 다양한 속성을 사용한다.

 

코드

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="20dp"
        android:background="#00ff00"
        android:text="버튼1"/>

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="20dp"
        android:text="이건 텍스트 뷰 입니다" />

    <EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="20dp"
        android:background="#0000ff"
        android:text="이건 에디트 텍스트 입니다" />

    <Button
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_margin="20dp"
        android:enabled="false"
        android:text="버튼2"/>

</LinearLayout>

 

결과

728x90