0
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <GridView
        android:id="@+id/gridview"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:horizontalSpacing="0dp"
        android:numColumns="2"
        android:stretchMode="columnWidth"
        android:verticalSpacing="0dp" />

</FrameLayout>

如何在此布局中添加滚动视图我必须在此布局中添加更多图片 bt 它不显示超过 6 个图像

4

3 回答 3

1
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

<ScrollView
android:id="@+id/scrollView1"
android:layout_width="match_parent"
android:layout_height="match_parent" >

    <GridView
        android:id="@+id/gridview"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:horizontalSpacing="0dp"
        android:numColumns="2"
        android:stretchMode="columnWidth"
        android:verticalSpacing="0dp" />
</ScrollView>
</FrameLayout>

试试这个。

于 2013-09-12T08:41:17.383 回答
1

您可以减少 gridView 的高度,gridView 将滚动。

于 2013-09-12T08:43:04.137 回答
0

有点不清楚的问题,但我猜你想要这个?

<FrameLayout>
<ScrollView>
<GridView> 
</GridView>
</ScrollView>
</FrameLayout>
于 2013-09-12T08:39:04.657 回答