2015-01-19 02:11:30 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-08-19 00:06:26 +00:00
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout
|
2017-09-25 15:32:45 +00:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-08-31 13:16:15 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2017-09-25 15:32:45 +00:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_width="match_parent"
|
2020-08-31 13:16:15 +00:00
|
|
|
tools:context="org.thoughtcrime.securesms.MediaOverviewActivity"
|
|
|
|
android:theme="@style/Theme.Session.DayNight.NoActionBar">
|
2015-01-19 02:11:30 +00:00
|
|
|
|
2020-08-19 00:06:26 +00:00
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
2020-08-31 13:16:15 +00:00
|
|
|
style="@style/Widget.Session.AppBarLayout"
|
2017-09-25 15:32:45 +00:00
|
|
|
android:layout_width="match_parent"
|
2020-08-31 13:16:15 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:stateListAnimator="@animator/appbar_elevation">
|
2017-09-25 15:32:45 +00:00
|
|
|
|
2020-08-19 00:06:26 +00:00
|
|
|
<androidx.appcompat.widget.Toolbar
|
2017-09-25 15:32:45 +00:00
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?android:attr/actionBarSize"
|
|
|
|
app:layout_scrollFlags="scroll|enterAlways"/>
|
|
|
|
|
2018-09-27 16:47:08 +00:00
|
|
|
<org.thoughtcrime.securesms.components.ControllableTabLayout
|
2017-09-25 15:32:45 +00:00
|
|
|
android:id="@+id/tab_layout"
|
2020-08-31 13:16:15 +00:00
|
|
|
style="@style/Widget.Session.TabLayout"
|
2015-01-19 02:11:30 +00:00
|
|
|
android:layout_width="match_parent"
|
2017-09-25 15:32:45 +00:00
|
|
|
android:layout_height="wrap_content"
|
2020-08-31 13:16:15 +00:00
|
|
|
android:layout_gravity="top"/>
|
2017-09-25 15:32:45 +00:00
|
|
|
|
2020-08-19 00:06:26 +00:00
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
2015-01-19 02:11:30 +00:00
|
|
|
|
2018-09-27 16:47:08 +00:00
|
|
|
<org.thoughtcrime.securesms.components.ControllableViewPager
|
2017-09-25 15:32:45 +00:00
|
|
|
android:id="@+id/pager"
|
2015-01-19 02:11:30 +00:00
|
|
|
android:layout_width="match_parent"
|
2016-09-07 19:26:34 +00:00
|
|
|
android:layout_height="match_parent"
|
2017-09-25 15:32:45 +00:00
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
|
2015-01-19 02:11:30 +00:00
|
|
|
|
2020-08-19 00:06:26 +00:00
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|