<?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="60dp"
|
android:background="?attr/lighToolbarBackgroundColor"
|
android:orientation="horizontal">
|
|
<ImageView
|
android:id="@+id/cancel"
|
android:layout_width="0dp"
|
android:layout_height="match_parent"
|
android:layout_weight="0.2"
|
android:background="?attr/button_background_drawable"
|
android:contentDescription="@string/content_description_cancel_button"
|
android:padding="15dp"
|
android:src="@drawable/cancel_edit" />
|
|
<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="?attr/button_background_drawable"
|
android:contentDescription="@string/content_description_select_all"
|
android:padding="15dp"
|
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="?attr/button_background_drawable"
|
android:contentDescription="@string/content_description_deselect_all"
|
android:padding="15dp"
|
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="?attr/button_background_drawable"
|
android:contentDescription="@string/content_description_delete_selection"
|
android:padding="15dp"
|
android:src="@drawable/delete" />
|
|
</LinearLayout>
|