2016-02-20 22:54:41 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2016-04-18 21:29:19 +02:00
|
|
|
<RelativeLayout
|
2016-02-20 22:54:41 +01:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-06-17 15:20:41 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2016-10-25 20:26:53 +02:00
|
|
|
android:id="@+id/fragment_holder"
|
2016-02-20 22:54:41 +01:00
|
|
|
android:layout_width="match_parent"
|
2016-10-25 20:26:53 +02:00
|
|
|
android:layout_height="match_parent">
|
2016-02-20 22:54:41 +01:00
|
|
|
|
2017-01-02 22:47:47 +01:00
|
|
|
<com.simplemobiletools.commons.views.MyViewPager
|
2016-04-18 21:29:19 +02:00
|
|
|
android:id="@+id/view_pager"
|
2016-02-20 22:54:41 +01:00
|
|
|
android:layout_width="match_parent"
|
2016-04-18 21:29:19 +02:00
|
|
|
android:layout_height="match_parent"/>
|
2016-02-20 22:54:41 +01:00
|
|
|
|
2018-06-17 15:20:41 +02:00
|
|
|
<android.support.constraint.ConstraintLayout
|
|
|
|
android:id="@+id/bottom_actions"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/bottom_actions_height"
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:background="@drawable/gradient_background_lighter"
|
|
|
|
android:paddingTop="@dimen/medium_margin">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/bottom_properties"
|
|
|
|
style="@style/MyBorderlessBackgroundStyle"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="@dimen/medium_margin"
|
|
|
|
android:src="@drawable/ic_properties"
|
|
|
|
app:layout_constraintEnd_toStartOf="@+id/bottom_edit"
|
|
|
|
app:layout_constraintHorizontal_bias="0.5"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"/>
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/bottom_edit"
|
|
|
|
style="@style/MyBorderlessBackgroundStyle"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="@dimen/medium_margin"
|
2018-06-17 16:08:57 +02:00
|
|
|
android:src="@drawable/ic_edit"
|
2018-06-17 15:20:41 +02:00
|
|
|
app:layout_constraintEnd_toStartOf="@+id/bottom_share"
|
|
|
|
app:layout_constraintHorizontal_bias="0.5"
|
|
|
|
app:layout_constraintStart_toEndOf="@+id/bottom_properties"/>
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/bottom_share"
|
|
|
|
style="@style/MyBorderlessBackgroundStyle"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="@dimen/medium_margin"
|
|
|
|
android:src="@drawable/ic_share"
|
|
|
|
app:layout_constraintEnd_toStartOf="@+id/bottom_delete"
|
|
|
|
app:layout_constraintHorizontal_bias="0.5"
|
|
|
|
app:layout_constraintStart_toEndOf="@+id/bottom_edit"/>
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/bottom_delete"
|
|
|
|
style="@style/MyBorderlessBackgroundStyle"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="@dimen/medium_margin"
|
|
|
|
android:src="@drawable/ic_delete"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintHorizontal_bias="0.5"
|
|
|
|
app:layout_constraintStart_toEndOf="@+id/bottom_share"/>
|
|
|
|
|
|
|
|
</android.support.constraint.ConstraintLayout>
|
2016-04-18 21:29:19 +02:00
|
|
|
</RelativeLayout>
|