3

GridView高さを拡張してすべての子を表示するaを使用したいと思います。この理由は、カスタムビューを、の上に配置したいためです。これは、 :GridViewと一緒にスクロールする必要があります。GridView

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

        <com.myapp.myview
            android:id="@+id/myview"
            android:layout_width="match_parent"
            android:layout_height="50dp" />

        <GridView
            android:id="@+id/gv"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:horizontalSpacing="@dimen/spacing_small"
            android:numColumns="2"
            android:padding="@dimen/spacing_small"
            android:verticalSpacing="@dimen/spacing_small" />
    </LinearLayout>

</ScrollView>

どうすればこれを達成できますか?

4

1 に答える 1

0

View子をカスタムテーブルに配置する独自のテーブルを作成しました。

于 2013-01-06T20:58:43.260 に答える