<?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 と同じくらいの大きさにしたい。作り方は?