我正在制作一个应用程序,我希望从右到左填充gridview“以将其用于从右到左的语言”,我试图将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>