gridview单元格内容从右到左

时间:2017-03-11 21:42:13

标签: android gridview

我有带数字的网格视图,但单元格中的内容是ltr

enter image description here

但是我希望它看起来像这样,rtl

enter image description here

(在所有细胞中)

有可能吗?

xml中的数字代码:

FULL JOIN

在java中:

    <!-- content-->
    <ScrollView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:fillViewport="true"
        android:layout_alignParentStart="true">

        <GridView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:id="@+id/grid_content"
            android:gravity="left"
            android:horizontalSpacing="0dp"
            android:verticalSpacing="0dp"
            android:numColumns="6"
            android:clickable="true"
            android:background="@color/white"
            >
        </GridView>

        </ScrollView>

我将gridview可点击,以便您可以看到

enter image description here

我试图实现的目标 enter image description here

0 个答案:

没有答案