linphone-android/res/layout/edit_list.xml
2015-11-05 16:23:59 +01:00

46 lines
No EOL
1.4 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/edit_list"
android:background="@color/colorG"
android:layout_width="match_parent"
android:layout_height="60dp"
android:visibility="gone">
<ImageView
android:id="@+id/cancel"
android:src="@drawable/cancel_button"
android:contentDescription="@string/content_description_valid"
android:layout_width="70dp"
android:layout_height="match_parent"
android:padding="15dp"
android:layout_alignParentLeft="true"/>
<ImageView
android:id="@+id/delete"
android:src="@drawable/delete_button"
android:contentDescription="@string/content_description_valid"
android:layout_width="70dp"
android:layout_height="match_parent"
android:padding="15dp"
android:layout_alignParentRight="true"/>
<ImageView
android:id="@+id/select_all"
android:src="@drawable/select_all_button"
android:contentDescription="@string/content_description_valid"
android:layout_width="70dp"
android:layout_height="match_parent"
android:padding="15dp"
android:layout_toLeftOf="@id/delete"/>
<ImageView
android:id="@+id/deselect_all"
android:src="@drawable/deselect_all_button"
android:contentDescription="@string/content_description_valid"
android:layout_width="70dp"
android:layout_height="match_parent"
android:padding="15dp"
android:layout_toLeftOf="@id/delete"
android:visibility="gone"/>
</RelativeLayout>