2018-06-17 23:52:03 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-10-05 22:42:21 +02:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
2018-06-17 23:52:03 +02:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:id="@+id/bottom_actions_wrapper"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/bottom_actions_height"
|
|
|
|
android:layout_alignParentBottom="true"
|
2018-10-02 15:04:55 +02:00
|
|
|
android:background="@drawable/gradient_background"
|
2018-06-17 23:52:03 +02:00
|
|
|
android:paddingTop="@dimen/medium_margin">
|
|
|
|
|
|
|
|
<ImageView
|
2018-06-19 23:23:18 +02:00
|
|
|
android:id="@+id/bottom_favorite"
|
2018-06-17 23:52:03 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2018-10-21 22:38:41 +02:00
|
|
|
android:background="?attr/selectableItemBackgroundBorderless"
|
2019-07-28 17:58:59 +02:00
|
|
|
android:contentDescription="@string/toggle_favorite"
|
2018-06-17 23:52:03 +02:00
|
|
|
android:padding="@dimen/medium_margin"
|
2019-08-09 12:01:01 +02:00
|
|
|
android:src="@drawable/ic_star_off_vector"
|
2019-05-17 10:46:33 +02:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2018-06-17 23:52:03 +02:00
|
|
|
app:layout_constraintEnd_toStartOf="@+id/bottom_edit"
|
|
|
|
app:layout_constraintHorizontal_bias="0.5"
|
2019-05-17 10:46:33 +02:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:layout_constraintVertical_bias="0.0"/>
|
2018-06-17 23:52:03 +02:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/bottom_edit"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2018-10-21 22:38:41 +02:00
|
|
|
android:background="?attr/selectableItemBackgroundBorderless"
|
2019-07-28 17:58:59 +02:00
|
|
|
android:contentDescription="@string/edit"
|
2018-06-17 23:52:03 +02:00
|
|
|
android:padding="@dimen/medium_margin"
|
2019-08-09 11:02:20 +02:00
|
|
|
android:src="@drawable/ic_edit_vector"
|
2019-05-17 10:46:33 +02:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2018-06-17 23:52:03 +02:00
|
|
|
app:layout_constraintEnd_toStartOf="@+id/bottom_share"
|
|
|
|
app:layout_constraintHorizontal_bias="0.5"
|
2019-05-17 10:46:33 +02:00
|
|
|
app:layout_constraintStart_toEndOf="@+id/bottom_favorite"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:layout_constraintVertical_bias="0.0"/>
|
2018-06-17 23:52:03 +02:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/bottom_share"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2018-10-21 22:38:41 +02:00
|
|
|
android:background="?attr/selectableItemBackgroundBorderless"
|
2019-07-28 17:58:59 +02:00
|
|
|
android:contentDescription="@string/share"
|
2018-06-17 23:52:03 +02:00
|
|
|
android:padding="@dimen/medium_margin"
|
2019-08-09 12:01:01 +02:00
|
|
|
android:src="@drawable/ic_share_vector"
|
2019-05-17 10:46:33 +02:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2018-06-17 23:52:03 +02:00
|
|
|
app:layout_constraintEnd_toStartOf="@+id/bottom_delete"
|
|
|
|
app:layout_constraintHorizontal_bias="0.5"
|
2019-05-17 10:46:33 +02:00
|
|
|
app:layout_constraintStart_toEndOf="@+id/bottom_edit"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:layout_constraintVertical_bias="0.0"/>
|
2018-06-17 23:52:03 +02:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/bottom_delete"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2018-10-21 22:38:41 +02:00
|
|
|
android:background="?attr/selectableItemBackgroundBorderless"
|
2019-07-28 17:58:59 +02:00
|
|
|
android:contentDescription="@string/delete"
|
2018-06-17 23:52:03 +02:00
|
|
|
android:padding="@dimen/medium_margin"
|
2019-08-09 11:02:20 +02:00
|
|
|
android:src="@drawable/ic_delete_vector"
|
2019-05-17 10:46:33 +02:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2018-06-29 21:07:21 +02:00
|
|
|
app:layout_constraintEnd_toStartOf="@+id/bottom_rotate"
|
2018-06-17 23:52:03 +02:00
|
|
|
app:layout_constraintHorizontal_bias="0.5"
|
2019-05-17 10:46:33 +02:00
|
|
|
app:layout_constraintStart_toEndOf="@+id/bottom_share"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:layout_constraintVertical_bias="0.0"/>
|
2018-06-17 23:52:03 +02:00
|
|
|
|
2018-06-29 21:07:21 +02:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/bottom_rotate"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2018-10-21 22:38:41 +02:00
|
|
|
android:background="?attr/selectableItemBackgroundBorderless"
|
2019-07-28 17:58:59 +02:00
|
|
|
android:contentDescription="@string/rotate_right"
|
2018-06-29 21:07:21 +02:00
|
|
|
android:padding="@dimen/medium_margin"
|
2019-08-10 17:45:58 +02:00
|
|
|
android:src="@drawable/ic_rotate_right_vector"
|
2019-05-17 10:46:33 +02:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2018-06-29 21:07:21 +02:00
|
|
|
app:layout_constraintEnd_toStartOf="@+id/bottom_properties"
|
|
|
|
app:layout_constraintHorizontal_bias="0.5"
|
2019-05-17 10:46:33 +02:00
|
|
|
app:layout_constraintStart_toEndOf="@+id/bottom_delete"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:layout_constraintVertical_bias="0.0"/>
|
2018-06-29 21:07:21 +02:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/bottom_properties"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2018-10-21 22:38:41 +02:00
|
|
|
android:background="?attr/selectableItemBackgroundBorderless"
|
2019-07-28 17:58:59 +02:00
|
|
|
android:contentDescription="@string/properties"
|
2018-06-29 21:07:21 +02:00
|
|
|
android:padding="@dimen/medium_margin"
|
2019-08-09 11:02:20 +02:00
|
|
|
android:src="@drawable/ic_properties_vector"
|
2019-05-17 10:46:33 +02:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2018-07-01 17:50:42 +02:00
|
|
|
app:layout_constraintEnd_toStartOf="@+id/bottom_change_orientation"
|
2018-06-29 21:07:21 +02:00
|
|
|
app:layout_constraintHorizontal_bias="0.5"
|
2019-05-17 10:46:33 +02:00
|
|
|
app:layout_constraintStart_toEndOf="@+id/bottom_rotate"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:layout_constraintVertical_bias="0.0"/>
|
2018-06-29 21:07:21 +02:00
|
|
|
|
|
|
|
<ImageView
|
2018-07-01 17:50:42 +02:00
|
|
|
android:id="@+id/bottom_change_orientation"
|
2018-06-29 21:07:21 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2018-10-21 22:38:41 +02:00
|
|
|
android:background="?attr/selectableItemBackgroundBorderless"
|
2019-07-28 17:58:59 +02:00
|
|
|
android:contentDescription="@string/change_orientation"
|
2018-06-29 21:07:21 +02:00
|
|
|
android:padding="@dimen/medium_margin"
|
2019-08-09 11:02:20 +02:00
|
|
|
android:src="@drawable/ic_orientation_auto_vector"
|
2019-05-17 10:46:33 +02:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2018-06-29 21:07:21 +02:00
|
|
|
app:layout_constraintEnd_toStartOf="@+id/bottom_slideshow"
|
|
|
|
app:layout_constraintHorizontal_bias="0.5"
|
2019-05-17 10:46:33 +02:00
|
|
|
app:layout_constraintStart_toEndOf="@+id/bottom_properties"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:layout_constraintVertical_bias="0.0"/>
|
2018-06-29 21:07:21 +02:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/bottom_slideshow"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2018-10-21 22:38:41 +02:00
|
|
|
android:background="?attr/selectableItemBackgroundBorderless"
|
2019-07-28 17:58:59 +02:00
|
|
|
android:contentDescription="@string/slideshow"
|
2018-06-29 21:07:21 +02:00
|
|
|
android:padding="@dimen/medium_margin"
|
2019-08-10 17:45:58 +02:00
|
|
|
android:src="@drawable/ic_slideshow_vector"
|
2019-05-17 10:46:33 +02:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2018-06-29 21:07:21 +02:00
|
|
|
app:layout_constraintEnd_toStartOf="@+id/bottom_show_on_map"
|
|
|
|
app:layout_constraintHorizontal_bias="0.5"
|
2019-05-17 10:46:33 +02:00
|
|
|
app:layout_constraintStart_toEndOf="@+id/bottom_change_orientation"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:layout_constraintVertical_bias="0.0"/>
|
2018-06-29 21:07:21 +02:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/bottom_show_on_map"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2018-10-21 22:38:41 +02:00
|
|
|
android:background="?attr/selectableItemBackgroundBorderless"
|
2019-07-28 17:58:59 +02:00
|
|
|
android:contentDescription="@string/show_on_map"
|
2018-06-29 21:07:21 +02:00
|
|
|
android:padding="@dimen/medium_margin"
|
2019-08-09 11:02:20 +02:00
|
|
|
android:src="@drawable/ic_place_vector"
|
2019-05-17 10:46:33 +02:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2018-06-29 21:07:21 +02:00
|
|
|
app:layout_constraintEnd_toStartOf="@+id/bottom_toggle_file_visibility"
|
|
|
|
app:layout_constraintHorizontal_bias="0.5"
|
2019-05-17 10:46:33 +02:00
|
|
|
app:layout_constraintStart_toEndOf="@+id/bottom_slideshow"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:layout_constraintVertical_bias="0.0"/>
|
2018-06-29 21:07:21 +02:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/bottom_toggle_file_visibility"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2018-10-21 22:38:41 +02:00
|
|
|
android:background="?attr/selectableItemBackgroundBorderless"
|
2019-07-28 17:58:59 +02:00
|
|
|
android:contentDescription="@string/toggle_file_visibility"
|
2018-06-29 21:07:21 +02:00
|
|
|
android:padding="@dimen/medium_margin"
|
|
|
|
android:src="@drawable/ic_hide"
|
2019-05-17 10:46:33 +02:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2018-07-01 11:27:50 +02:00
|
|
|
app:layout_constraintEnd_toStartOf="@+id/bottom_rename"
|
2018-06-29 21:07:21 +02:00
|
|
|
app:layout_constraintHorizontal_bias="0.5"
|
2019-05-17 10:46:33 +02:00
|
|
|
app:layout_constraintStart_toEndOf="@+id/bottom_show_on_map"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:layout_constraintVertical_bias="0.0"/>
|
2018-06-29 21:07:21 +02:00
|
|
|
|
2018-07-01 11:27:50 +02:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/bottom_rename"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2018-10-21 22:38:41 +02:00
|
|
|
android:background="?attr/selectableItemBackgroundBorderless"
|
2019-07-28 17:58:59 +02:00
|
|
|
android:contentDescription="@string/rename"
|
2018-07-01 11:27:50 +02:00
|
|
|
android:padding="@dimen/medium_margin"
|
|
|
|
android:src="@drawable/ic_rename_new"
|
2019-05-17 10:46:33 +02:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2019-07-28 17:24:18 +02:00
|
|
|
app:layout_constraintEnd_toStartOf="@+id/bottom_set_as"
|
2018-07-01 11:27:50 +02:00
|
|
|
app:layout_constraintHorizontal_bias="0.5"
|
2019-05-17 10:46:33 +02:00
|
|
|
app:layout_constraintStart_toEndOf="@+id/bottom_toggle_file_visibility"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:layout_constraintVertical_bias="0.0"/>
|
2018-07-01 11:27:50 +02:00
|
|
|
|
2018-07-15 21:17:13 +02:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/bottom_set_as"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2018-10-21 22:38:41 +02:00
|
|
|
android:background="?attr/selectableItemBackgroundBorderless"
|
2019-07-28 17:58:59 +02:00
|
|
|
android:contentDescription="@string/set_as"
|
2018-07-15 21:17:13 +02:00
|
|
|
android:padding="@dimen/medium_margin"
|
2019-08-10 17:45:58 +02:00
|
|
|
android:src="@drawable/ic_set_as_vector"
|
2019-05-17 10:46:33 +02:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2019-07-28 17:24:18 +02:00
|
|
|
app:layout_constraintEnd_toStartOf="@+id/bottom_copy"
|
2018-07-15 21:17:13 +02:00
|
|
|
app:layout_constraintHorizontal_bias="0.5"
|
2019-05-17 10:46:33 +02:00
|
|
|
app:layout_constraintStart_toEndOf="@+id/bottom_rename"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:layout_constraintVertical_bias="0.0"/>
|
2018-07-15 21:17:13 +02:00
|
|
|
|
2019-01-04 17:58:33 +01:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/bottom_copy"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/selectableItemBackgroundBorderless"
|
2019-07-28 17:58:59 +02:00
|
|
|
android:contentDescription="@string/copy"
|
2019-01-04 17:58:33 +01:00
|
|
|
android:padding="@dimen/medium_margin"
|
|
|
|
android:src="@drawable/ic_copy"
|
2019-05-17 10:46:33 +02:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2019-07-28 17:24:18 +02:00
|
|
|
app:layout_constraintEnd_toStartOf="@+id/bottom_move"
|
2019-01-04 17:58:33 +01:00
|
|
|
app:layout_constraintHorizontal_bias="0.5"
|
2019-05-17 10:46:33 +02:00
|
|
|
app:layout_constraintStart_toEndOf="@+id/bottom_set_as"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:layout_constraintVertical_bias="0.0"/>
|
2019-01-04 17:58:33 +01:00
|
|
|
|
2019-02-21 12:16:46 +01:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/bottom_move"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/selectableItemBackgroundBorderless"
|
2019-07-28 17:58:59 +02:00
|
|
|
android:contentDescription="@string/move"
|
2019-02-21 12:16:46 +01:00
|
|
|
android:padding="@dimen/medium_margin"
|
|
|
|
android:src="@drawable/ic_move"
|
2019-05-17 10:46:33 +02:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2019-12-12 14:24:25 +01:00
|
|
|
app:layout_constraintEnd_toStartOf="@+id/bottom_resize"
|
2019-02-21 12:16:46 +01:00
|
|
|
app:layout_constraintHorizontal_bias="0.5"
|
2019-05-17 10:46:33 +02:00
|
|
|
app:layout_constraintStart_toEndOf="@+id/bottom_copy"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:layout_constraintVertical_bias="0.0"/>
|
2019-02-21 12:16:46 +01:00
|
|
|
|
2019-12-12 14:24:25 +01:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/bottom_resize"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/selectableItemBackgroundBorderless"
|
|
|
|
android:contentDescription="@string/resize"
|
|
|
|
android:padding="@dimen/medium_margin"
|
|
|
|
android:src="@drawable/ic_minimize"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintHorizontal_bias="0.5"
|
|
|
|
app:layout_constraintStart_toEndOf="@+id/bottom_move"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:layout_constraintVertical_bias="0.0"/>
|
|
|
|
|
2018-10-05 22:42:21 +02:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|