mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-18 03:48:08 +00:00
54 lines
No EOL
1.6 KiB
XML
54 lines
No EOL
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/edit_list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="50dp"
|
|
android:background="@color/colorH"
|
|
android:orientation="horizontal"
|
|
android:visibility="gone">
|
|
|
|
<ImageView
|
|
android:id="@+id/cancel"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="0.2"
|
|
android:background="@drawable/toolbar_button"
|
|
android:contentDescription="@string/content_description_cancel_button"
|
|
android:src="@drawable/back"/>
|
|
|
|
<View
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="0.4"
|
|
/>
|
|
|
|
<ImageView
|
|
android:id="@+id/select_all"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="0.2"
|
|
android:background="@drawable/toolbar_button"
|
|
android:contentDescription="@string/content_description_select_all"
|
|
android:src="@drawable/select_all"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/deselect_all"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="0.2"
|
|
android:background="@drawable/toolbar_button"
|
|
android:contentDescription="@string/content_description_deselect_all"
|
|
android:src="@drawable/deselect_all"
|
|
android:visibility="gone"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/delete"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="0.2"
|
|
android:background="@drawable/toolbar_button"
|
|
android:contentDescription="@string/content_description_delete_selection"
|
|
android:src="@drawable/delete_button"/>
|
|
|
|
|
|
</LinearLayout> |