在我的活动中有两个LinearLayout
,LinearLayout 1
和LinearLayout 2
。 LinearLayout 2
必须在父布局的底部对齐,而LinearLayout 1
必须占用父级的其余部分。我使用了RelativeLayout
和layout_alignParentBottom
。它工作正常但LinearLayout 1
没有全屏显示,当我fill_parent
使用LinearLayout 1
时,它与LinearLayout 2
重叠。
答案 0 :(得分:0)
<?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="0dp"
android:layout_weight="1"
android:background="#FF0000"
android:orientation="vertical"></LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="100dp"
android:background="#FFF000"
android:orientation="vertical"></LinearLayout>