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

This commit is contained in:
jabarros 2014-06-30 10:43:50 +02:00 committed by David A. Velasco
parent bb2830fd73
commit 5dcc9f8de4

View file

@ -109,6 +109,16 @@
android:gravity="center_vertical"
android:orientation="vertical">
<ImageView
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_marginBottom="4dp"
android:layout_marginRight="4dp"
android:src="@drawable/sharedlink" />
<ImageView
android:id="@+id/shareWithMeIcon"
android:layout_width="wrap_content"
@ -116,18 +126,8 @@
android:layout_gravity="center_vertical"
android:layout_marginLeft="4dp"
android:layout_marginRight="4dp"
android:layout_marginBottom="4dp"
android:src="@drawable/shared_with_me" />
<ImageView
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_marginTop="4dp"
android:layout_marginRight="4dp"
android:src="@drawable/sharedlink" />
android:src="@drawable/shared_with_me" />
</LinearLayout>