FairEmail/app/src/main/res/layout/fragment_options.xml

24 lines
1023 B
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
2019-12-03 07:45:26 +00:00
tools:context="eu.faircode.email.ActivitySetup">
2020-05-19 09:10:59 +00:00
<androidx.viewpager.widget.ViewPager
2020-04-15 08:08:13 +00:00
android:id="@+id/pager"
android:layout_width="match_parent"
2020-05-19 09:10:59 +00:00
android:layout_height="match_parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<com.google.android.material.tabs.TabLayout
android:id="@+id/tab_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
2021-06-29 17:46:41 +00:00
app:tabInlineLabel="true"
2020-05-19 09:10:59 +00:00
app:tabMode="scrollable" />
</androidx.viewpager.widget.ViewPager>
</androidx.constraintlayout.widget.ConstraintLayout>