Мне нужен центральный столбец, использующий GridView, но все, что я пытаюсь, не работает. Это всегда выравнивается влево. Я пытался возиться с layout_gravity и гравитацией, но безрезультатно.
У меня есть GridView в LinearLayout:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<GridView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1.0"
android:numColumns="1"
android:columnWidth="100dp"
android:stretchMode="spacingWidth"
/>
</LinearLayout>