<?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" >
<android.support.v4.view.ViewPager android:id="@+id/groups_of_content"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0"/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="100"
android:text="There are not place for me" />
</LinearLayout>
在上面的代码中 ViewPager 占据了所有的地方。如何使它占据内容所需的尽可能多的空间。作为布局的“wrap_content”属性。
UPD:ViewPager 填充:
<?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="wrap_content"
android:orientation="horizontal">
<TextView android:id="@+id/group_name"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/group_active"
/>
</LinearLayout>
我希望 ViewPager 的大小与上面代码中的 TextView 一样大。怎么做?