android 레이아웃 나누기
<?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"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
android:orientation="vertical"
android:weightSum="9">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="2"
android:background="@color/blue"
android:orientation="vertical">
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="5"
android:background="@color/pink"
android:orientation="vertical">
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="2"
android:background="@color/darkblue"
android:orientation="vertical">
</LinearLayout>
</LinearLayout>
</RelativeLayout>
'- Android' 카테고리의 다른 글
SecurityException (0) | 2021.10.23 |
---|---|
Android iemi 번호를 가져오기, 안드로이드 11 부터 수집 못함 (2) | 2021.10.19 |
안드로이드 앱등록 2021년8월부터 변경 Android App Bundle 적용 apk 업로드 불가 (0) | 2021.08.10 |
안드로이드 GeoCoding 위도, 경도 값으로 주소 얻어오기, 변환하기 (0) | 2021.07.28 |
[Android] android:autoLink="phone" 전화번호 걸기 (0) | 2021.07.24 |