211p
직접 풀어보기 5-2
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">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="horizontal">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#ff0000"
android:orientation="vertical">
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#ffff00"
android:orientation="vertical">
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#000000"
android:orientation="vertical">
</LinearLayout>
</LinearLayout>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#0000ff"
android:orientation="vertical">
</LinearLayout>
</LinearLayout>
실행 결과
'개발일지 > 안드로이드 JAVA' 카테고리의 다른 글
[안드로이드 프로그래밍 7판] 예제 6-15,16 ViewFlipper (0) | 2023.01.31 |
---|---|
[안드로이드 프로그래밍 7판] 실습 6-1 날짜/시간 예약 앱 만들기 (0) | 2023.01.31 |
자주 쓰이는 색상 (0) | 2023.01.15 |
[안드로이드 프로그래밍 7판] 4장 연습문제 (0) | 2023.01.15 |
[안드로이드 스튜디오] 액션바 텍스트 색상 바꾸기 (0) | 2023.01.12 |