0

我有这个用于 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>
4

1 回答 1

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

<ExpandableListView 
android:id="@+id/listView"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
</ExpandableListView>

<Gallery 
android:id="@+id/gallery_footer_row"
android:layout_width="fill_parent"        
 />
</LinearLayout>
于 2013-09-04T09:11:27.483 回答