73 lines
2.8 KiB
XML
73 lines
2.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout 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"
|
|
android:background="@color/screen_background"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@color/top_bar_background"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal"
|
|
android:paddingStart="8dp"
|
|
android:paddingTop="10dp"
|
|
android:paddingEnd="16dp"
|
|
android:paddingBottom="10dp">
|
|
|
|
<ImageButton
|
|
android:id="@+id/backButton"
|
|
android:layout_width="40dp"
|
|
android:layout_height="40dp"
|
|
android:background="?attr/selectableItemBackgroundBorderless"
|
|
android:contentDescription="@string/back"
|
|
android:src="@android:drawable/ic_media_previous"
|
|
android:tint="@android:color/white" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/settings_title"
|
|
android:textColor="@android:color/white"
|
|
android:textSize="20sp"
|
|
android:textStyle="bold" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:padding="16dp">
|
|
|
|
<TextView
|
|
android:id="@+id/versionText"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/bg_settings_card"
|
|
android:padding="16dp"
|
|
android:textColor="@color/primary_text"
|
|
android:textSize="15sp" />
|
|
|
|
<com.google.android.material.switchmaterial.SwitchMaterial
|
|
android:id="@+id/autoUpdateSwitch"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="16dp"
|
|
android:background="@drawable/bg_settings_card"
|
|
android:padding="16dp"
|
|
android:text="@string/auto_update"
|
|
android:textColor="@color/primary_text"
|
|
app:useMaterialThemeColors="true" />
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/checkUpdatesButton"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="16dp"
|
|
android:text="@string/check_updates"
|
|
app:cornerRadius="18dp" />
|
|
</LinearLayout>
|
|
</LinearLayout>
|