2017-06-25 07:07:41 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-05-26 22:26:23 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2017-06-25 07:07:41 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2019-05-26 22:26:23 +02:00
|
|
|
android:background="@android:color/black"
|
|
|
|
android:orientation="vertical">
|
2017-06-25 07:07:41 +02:00
|
|
|
|
|
|
|
<com.keylesspalace.tusky.view.ImageViewPager
|
2019-05-26 22:26:23 +02:00
|
|
|
android:id="@+id/viewPager"
|
2017-06-25 07:07:41 +02:00
|
|
|
android:layout_width="match_parent"
|
2019-05-26 22:26:23 +02:00
|
|
|
android:layout_height="match_parent" />
|
2017-06-25 07:07:41 +02:00
|
|
|
|
2018-12-17 15:25:35 +01:00
|
|
|
<androidx.appcompat.widget.Toolbar
|
2017-06-25 07:07:41 +02:00
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
2018-05-10 20:13:25 +02:00
|
|
|
android:background="@color/toolbar_view_media"
|
2019-05-26 22:26:23 +02:00
|
|
|
android:theme="@style/ViewMediaActivity.AppBarLayout"
|
|
|
|
app:titleTextColor="@color/white" />
|
2017-06-25 07:07:41 +02:00
|
|
|
|
2019-04-16 21:39:12 +02:00
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/progressBarShare"
|
|
|
|
style="?android:attr/progressBarStyleLarge"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2019-05-26 22:26:23 +02:00
|
|
|
android:layout_gravity="center"
|
|
|
|
android:visibility="gone" />
|
2019-04-16 21:39:12 +02:00
|
|
|
|
2017-06-25 07:07:41 +02:00
|
|
|
</FrameLayout>
|