35 lines
1.5 KiB
XML
35 lines
1.5 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent">
|
||
|
|
||
|
<com.google.android.material.appbar.AppBarLayout
|
||
|
android:id="@+id/payments_activity_fragment_appbar"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:background="?android:windowBackground">
|
||
|
|
||
|
<androidx.appcompat.widget.Toolbar
|
||
|
android:id="@+id/payments_all_activity_fragment_toolbar"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
app:navigationIcon="@drawable/ic_arrow_left_24"
|
||
|
app:title="@string/PaymentsActivityFragment__all_activity"
|
||
|
app:titleTextAppearance="@style/TextAppearance.Signal.Body1.Bold" />
|
||
|
|
||
|
<com.google.android.material.tabs.TabLayout
|
||
|
android:id="@+id/payments_all_activity_fragment_tabs"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content" />
|
||
|
|
||
|
</com.google.android.material.appbar.AppBarLayout>
|
||
|
|
||
|
<androidx.viewpager.widget.ViewPager
|
||
|
android:id="@+id/payments_all_activity_fragment_view_pager"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
|
||
|
|
||
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|