2020-05-21 07:35:09 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-05-24 03:59:25 +02:00
|
|
|
<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-24 03:59:25 +02:00
|
|
|
android:id="@+id/activity_settings_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
|
2020-05-24 03:59:25 +02:00
|
|
|
android:id="@+id/activity_settings_app_bar"
|
2020-05-21 07:35:09 +02:00
|
|
|
android:layout_width="match_parent"
|
2020-05-22 22:48:05 +02:00
|
|
|
android:layout_height="wrap_content">
|
2020-05-15 11:25:38 +02:00
|
|
|
|
2020-05-21 19:05:55 +02:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
2020-05-16 07:32:32 +02:00
|
|
|
android:layout_width="match_parent"
|
2020-05-21 19:05:55 +02:00
|
|
|
android:layout_height="match_parent">
|
2020-05-16 07:32:32 +02:00
|
|
|
|
2020-05-21 07:35:09 +02:00
|
|
|
<TextView
|
2020-05-24 03:59:25 +02:00
|
|
|
android:id="@+id/activity_settings_heading"
|
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"
|
2020-05-21 19:05:55 +02:00
|
|
|
android:textSize="30sp"
|
2020-05-24 03:59:25 +02:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2020-05-21 19:05:55 +02:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2020-05-24 03:59:25 +02:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
2020-05-16 06:14:27 +02:00
|
|
|
|
2020-05-24 03:59:25 +02:00
|
|
|
<com.finnmglas.launcher.extern.FontAwesome
|
|
|
|
android:id="@+id/activity_settings_close"
|
2020-05-21 19:05:55 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginEnd="8dp"
|
|
|
|
android:layout_marginRight="8dp"
|
|
|
|
android:gravity="center"
|
2020-05-21 07:35:09 +02:00
|
|
|
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-22 17:25:32 +02:00
|
|
|
android:textColor="?attr/colorAccent"
|
2020-05-21 16:20:35 +02:00
|
|
|
android:textSize="22sp"
|
2020-05-21 19:05:55 +02:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
custom:type="solid" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
2020-05-19 12:24:08 +02:00
|
|
|
|
2020-05-21 07:35:09 +02:00
|
|
|
<com.google.android.material.tabs.TabLayout
|
2020-05-24 03:59:25 +02:00
|
|
|
android:id="@+id/activity_settings_tabs"
|
2020-05-21 07:35:09 +02:00
|
|
|
android:layout_width="match_parent"
|
2020-05-22 22:48:05 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:tabTextColor="?attr/android:textColor" />
|
2020-05-21 19:05:55 +02:00
|
|
|
|
2020-05-21 07:35:09 +02:00
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
|
|
|
|
<androidx.viewpager.widget.ViewPager
|
2020-05-24 03:59:25 +02:00
|
|
|
android:id="@+id/activity_settings_view_pager"
|
2020-05-21 07:35:09 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|