我正在Android Studio上制作一款游戏,但网格视图组件存在问题.我无法将网格视图中的项目居中对齐,如After image.我尝试了几种方式android:stretchMode,android:layout_centerHorizontal但它没有帮助.这是我的XML代码:
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:background="@android:color/holo_orange_light"
android:layout_weight="8"
android:layout_gravity="center">
<GridView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="10px"
android:id="@+id/gridAnswersChar"
android:numColumns="8"
android:gravity="center">
</GridView>
</RelativeLayout>
Run Code Online (Sandbox Code Playgroud)
之前:
后: