我有这个用于 Activity 的 XML,我想在屏幕上始终显示 Gallery 视图。当我使用此布局并且 ListView 变大时,Gallary 位于 ListView 下方并且不可见。即使 ListView 变大,如何始终在屏幕上显示它比屏幕大小?使用此布局或其他类型。
<?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" >
<ExpandableListView
android:id="@+id/listView"
android:layout_width="match_parent"
android:layout_height="wrap_content"></ExpandableListView>
<Gallery
android:id="@+id/gallery_footer_row"
android:layout_width="fill_parent"
/>
</LinearLayout>