如何正确创建这样的布局?
我希望ViewPager下的LinearLayout 2(不在内部)。
我知道几乎没有办法实现这一目标,但最好的方法是什么?
答案 0 :(得分:6)
您必须在view_ager中设置layout_weight。您可以使用此xml复制粘贴。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"></LinearLayout>
<ViewPager
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"></LinearLayout>
</LinearLayout>
答案 1 :(得分:4)
将所有控件放在RelativeLayout
控件
在ViewPager
控件中使用此属性
android:layout_below="@+id/linearlayout1"
android:layout_above="@+id/linearlayout2"
LinearLayout 2上的 android:layout_alignParentBottom="true"
。