我想让我的gridview从右到左添加项目,

我的意思是这样的:


  3 2 1
  
  6 5 4


所以我在android:rotationY="180"的网格视图中添加了main.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ffffff"
android:gravity="center"
android:orientation="vertical" >
<GridView
    android:id="@+id/gridview"
    android:rotationY="180"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_gravity="right"
    android:columnWidth="90dp"
    android:gravity="right"
    android:horizontalSpacing="10dp"
    android:numColumns="auto_fit"
    android:stretchMode="columnWidth"
    android:verticalSpacing="10dp" />

  </LinearLayout>


我也将它添加到我的item.xml中,我的Adaptor使用它:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:rotationY="180"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="5dp" >

<ImageView
    android:id="@+id/gridimage"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginLeft="20dp"
    android:layout_marginRight="29dp"
    android:layout_marginTop="15dp"
    android:src="@drawable/folder_icon" />
    </LinearLayout>


但是它不起作用,我应该怎么做才能使其起作用?

最佳答案

您也应该将android:rotationY="180"添加到item.xml

08-05 14:25
查看更多