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
'개발 > 책' 카테고리의 다른 글
[안드로이드 프로그래밍] 4장 직접 풀어보기 4-4 (0) | 2021.09.29 |
---|---|
[안드로이드 프로그래밍] 2장 직접 풀어보기 2-3 (0) | 2021.09.27 |
[쉽게 풀어쓴 C언어 Express] 4장 Programming (0) | 2021.09.19 |