Я делаю игру на Android Studio и имею проблему с компонентом Grid View. Я не могу выровнять объекты внутри Grid View, как После изображения. Я пробую несколько способов как 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>
До:
После: