2016-02-20 22:54:41 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2022-07-27 15:41:24 +02:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
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"
|
2022-07-27 15:41:24 +02:00
|
|
|
android:layout_height="match_parent" />
|
2016-02-20 22:54:41 +01:00
|
|
|
|
2018-06-17 23:52:03 +02:00
|
|
|
<include
|
2018-06-17 15:20:41 +02:00
|
|
|
android:id="@+id/bottom_actions"
|
2022-07-27 15:41:24 +02:00
|
|
|
layout="@layout/bottom_actions" />
|
2018-06-17 15:20:41 +02:00
|
|
|
|
2018-10-02 15:04:55 +02:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/top_shadow"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/default_status_action_height"
|
2022-07-27 15:41:24 +02:00
|
|
|
android:background="@drawable/gradient_background_flipped"
|
|
|
|
android:contentDescription="@null" />
|
2018-10-02 15:04:55 +02:00
|
|
|
|
2022-07-27 15:41:24 +02:00
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
|
|
android:id="@+id/medium_viewer_appbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:background="@android:color/transparent"
|
|
|
|
android:elevation="0dp"
|
|
|
|
app:elevation="0dp">
|
|
|
|
|
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
|
|
android:id="@+id/medium_viewer_toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
app:menu="@menu/menu_viewpager"
|
|
|
|
app:navigationIcon="@drawable/ic_arrow_left_vector" />
|
|
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
2016-04-18 21:29:19 +02:00
|
|
|
</RelativeLayout>
|