「右から左の言語に使用するために」グリッドビューを右から左に塗りつぶしたいアプリを作成しています。gridViewの重力を右に設定しようとしましたが、機能しませんでした... gridviewのレイアウトは以下のとおりです。
前もって感謝します
<RelativeLayout
android:id="@+id/grid_layout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@+id/show_info"
android:gravity="right" >
<GridView
android:id="@+id/channel_grid"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_centerHorizontal="true"
android:columnWidth="90dp"
android:gravity="right"
android:horizontalSpacing="10dp"
android:numColumns="auto_fit"
android:stretchMode="columnWidth"
android:verticalSpacing="10dp" >
</GridView>
</RelativeLayout>