我想使用GridView
来扩展它的高度以显示它的所有孩子。这样做的原因是我想在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>
我怎样才能做到这一点?
答案 0 :(得分:0)
我创建了自己的View
,将孩子放在自定义表格中。