浏览代码

Change order of showing 'shared link' and 'shared with me' icons when both visibles

jabarros 11 年之前
父节点
当前提交
5dcc9f8de4
共有 1 个文件被更改,包括 6 次插入6 次删除
  1. 6 6
      res/layout/list_item.xml

+ 6 - 6
res/layout/list_item.xml

@@ -110,24 +110,24 @@
         android:orientation="vertical">
 
     <ImageView
-        android:id="@+id/shareWithMeIcon"
+        android:id="@+id/shareIcon"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:layout_gravity="center_vertical"
         android:layout_marginLeft="4dp"
-        android:layout_marginRight="4dp"
         android:layout_marginBottom="4dp"
-        android:src="@drawable/shared_with_me" />
+        android:layout_marginRight="4dp"
+        android:src="@drawable/sharedlink" />
 
     <ImageView
-        android:id="@+id/shareIcon"
+        android:id="@+id/shareWithMeIcon"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:layout_gravity="center_vertical"
         android:layout_marginLeft="4dp"
-        android:layout_marginTop="4dp"
         android:layout_marginRight="4dp"
-        android:src="@drawable/sharedlink" />
+        android:layout_marginTop="4dp"
+        android:src="@drawable/shared_with_me" />
 
     </LinearLayout>