2020-05-21 07:35:09 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-05-15 07:51:48 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2020-05-21 16:20:35 +02:00
|
|
|
xmlns:custom="http://schemas.android.com/apk/res-auto"
|
2020-05-15 07:51:48 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2020-05-21 08:59:21 +02:00
|
|
|
android:id="@+id/container"
|
2020-05-15 07:51:48 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
tools:context=".SettingsActivity">
|
|
|
|
|
2020-05-21 07:35:09 +02:00
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
|
|
android:layout_width="match_parent"
|
2020-05-15 11:25:38 +02:00
|
|
|
android:layout_height="wrap_content"
|
2020-05-21 07:35:09 +02:00
|
|
|
android:background="@color/colorPrimaryDark"
|
|
|
|
android:theme="@style/AppTheme.AppBarOverlay">
|
2020-05-15 11:25:38 +02:00
|
|
|
|
2020-05-21 07:35:09 +02:00
|
|
|
<LinearLayout
|
2020-05-16 07:32:32 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-05-21 07:35:09 +02:00
|
|
|
android:orientation="horizontal">
|
2020-05-16 07:32:32 +02:00
|
|
|
|
2020-05-21 07:35:09 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/title"
|
2020-05-16 07:32:32 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-05-21 07:35:09 +02:00
|
|
|
android:gravity="center"
|
|
|
|
android:minHeight="?actionBarSize"
|
|
|
|
android:padding="@dimen/appbar_padding"
|
|
|
|
android:text="@string/settings_title"
|
2020-05-21 08:59:21 +02:00
|
|
|
android:textAppearance="@style/TextAppearance.Widget.AppCompat.Toolbar.Title"
|
|
|
|
android:textSize="30sp" />
|
2020-05-16 06:14:27 +02:00
|
|
|
|
2020-05-21 16:20:35 +02:00
|
|
|
<com.finnmglas.launcher.FontAwesome
|
2020-05-21 07:35:09 +02:00
|
|
|
android:layout_width="match_parent"
|
2020-05-21 16:20:35 +02:00
|
|
|
android:id="@+id/fa"
|
2020-05-21 07:35:09 +02:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:gravity="center|right"
|
|
|
|
android:includeFontPadding="true"
|
2020-05-15 16:59:48 +02:00
|
|
|
android:onClick="backHome"
|
2020-05-21 07:35:09 +02:00
|
|
|
android:paddingLeft="16sp"
|
|
|
|
android:paddingRight="16sp"
|
2020-05-21 16:20:35 +02:00
|
|
|
android:text="@string/fa_close_window"
|
2020-05-21 07:35:09 +02:00
|
|
|
android:textColor="#ffffff"
|
2020-05-21 16:20:35 +02:00
|
|
|
android:textSize="22sp"
|
|
|
|
custom:type="solid"/>
|
2020-05-21 07:35:09 +02:00
|
|
|
</LinearLayout>
|
2020-05-19 12:24:08 +02:00
|
|
|
|
2020-05-21 07:35:09 +02:00
|
|
|
<com.google.android.material.tabs.TabLayout
|
|
|
|
android:id="@+id/tabs"
|
|
|
|
android:layout_width="match_parent"
|
2020-05-19 12:24:08 +02:00
|
|
|
android:layout_height="wrap_content"
|
2020-05-21 07:35:09 +02:00
|
|
|
android:background="?attr/colorPrimaryDark" />
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
|
|
|
|
<androidx.viewpager.widget.ViewPager
|
|
|
|
android:id="@+id/view_pager"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|