当我启动我的应用程序gridview显示蓝色背景我想设置白色背景如何设置
在这里我放了我的 xml 和 imge
Gridview.xml
<LinearLayout android:id="@+id/bodyfirst"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:padding="15dp"
<GridView
android:id="@+id/gridview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:numColumns="3"
android:drawSelectorOnTop="true"
android:gravity="center_vertical"
android:background="@android:color/white">
</GridView>
</LinearLayout>