Android Studio中无用滚动条的GridView问题

时间:2019-01-08 22:24:43

标签: android android-studio listview gridview

我有一个问题,我使用gridView,它完全可以显示我的4个元素,但是仍然放了一个滚动条,当我可以直接向我显示最后一个元素时,它可以让我看到最后一个元素的结尾

我的GridView:

xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<GridView
    android:layout_marginTop="10dp"
    android:id="@+id/about_grid_view"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:numColumns="2"/>

<View
    android:layout_marginTop="10dp"
    android:layout_width="300dp"
    android:layout_gravity="center"
    android:layout_height="4dp"
    android:background="@color/colorRedLogoDark" />

我需要在下面显示一些元素,但是我想删除无用的滚动条。 我想指出的是,我的元素而不是显示所有内容。

0 个答案:

没有答案