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" >

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

4

1 に答える 1

2

android:layout_weightを使用する場合は、この例のようにandroid:layout_height0dipに設定する必要があります。

<?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="0dip" 
        android:layout_weight="3"/>

    <TextView 
        android:layout_width="fill_parent" 
        android:layout_height="0dip" 
        android:layout_weight="1"
        android:text="Must there be place for me" />

</LinearLayout>
于 2012-11-02T14:52:08.050 に答える