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>
どうすればこれを達成できますか?