我有一个用于活动的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>
答案 0 :(得分: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>