Archived
110 lines
4.7 KiB
XML
110 lines
4.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|||
|
|
<androidx.core.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
tools:context=".fragment.SettingsFragment"
|
||
|
|
android:background="?android:colorBackground">
|
||
|
|
|
||
|
|
<androidx.appcompat.widget.LinearLayoutCompat
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:orientation="vertical">
|
||
|
|
|
||
|
|
<com.google.android.material.card.MaterialCardView
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginHorizontal="8dp"
|
||
|
|
android:layout_marginVertical="4dp"
|
||
|
|
style="@style/Widget.Material3.CardView.Outlined">
|
||
|
|
|
||
|
|
<androidx.appcompat.widget.LinearLayoutCompat
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:orientation="vertical"
|
||
|
|
android:paddingBottom="8dp">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginBottom="8dp"
|
||
|
|
android:textSize="22sp"
|
||
|
|
android:fontFamily="@font/lato_bolditalic"
|
||
|
|
android:text="@string/settings_misc"
|
||
|
|
android:layout_marginTop="16dp"
|
||
|
|
android:layout_marginHorizontal="16dp"/>
|
||
|
|
|
||
|
|
<com.google.android.material.divider.MaterialDivider
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginHorizontal="16dp"/>
|
||
|
|
|
||
|
|
<!-- Academic quarter -->
|
||
|
|
<androidx.appcompat.widget.LinearLayoutCompat
|
||
|
|
android:background="@drawable/layout_ripple"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:orientation="vertical"
|
||
|
|
android:clickable="true"
|
||
|
|
android:focusable="true"
|
||
|
|
android:paddingHorizontal="16dp"
|
||
|
|
android:paddingVertical="8dp">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:textSize="16sp"
|
||
|
|
android:fontFamily="@font/lato_bolditalic"
|
||
|
|
android:text="@string/settings_quarter_title"/>
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:textSize="16sp"
|
||
|
|
android:text="@string/settings_quarter_subtitle"/>
|
||
|
|
|
||
|
|
</androidx.appcompat.widget.LinearLayoutCompat>
|
||
|
|
|
||
|
|
<!-- App version -->
|
||
|
|
<androidx.appcompat.widget.LinearLayoutCompat
|
||
|
|
android:id="@+id/button_app_version"
|
||
|
|
android:background="@drawable/layout_ripple"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:orientation="vertical"
|
||
|
|
android:clickable="true"
|
||
|
|
android:focusable="true"
|
||
|
|
android:paddingHorizontal="16dp"
|
||
|
|
android:paddingVertical="8dp">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:textSize="16sp"
|
||
|
|
android:fontFamily="@font/lato_bolditalic"
|
||
|
|
android:text="@string/settings_app_version"/>
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/app_version_text"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:textSize="16sp"/>
|
||
|
|
|
||
|
|
</androidx.appcompat.widget.LinearLayoutCompat>
|
||
|
|
|
||
|
|
</androidx.appcompat.widget.LinearLayoutCompat>
|
||
|
|
|
||
|
|
</com.google.android.material.card.MaterialCardView>
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_gravity="center_horizontal"
|
||
|
|
android:text="@string/with_love"
|
||
|
|
android:textSize="10sp"
|
||
|
|
android:layout_marginTop="4dp"
|
||
|
|
android:textAlignment="center"/>
|
||
|
|
|
||
|
|
</androidx.appcompat.widget.LinearLayoutCompat>
|
||
|
|
|
||
|
|
</androidx.core.widget.NestedScrollView>
|