forked from github/szkolny
60 lines
2.2 KiB
XML
60 lines
2.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
~ Copyright (c) Kuba Szczodrzyński 2020-5-4.
|
|
-->
|
|
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<ScrollView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:paddingStart="24dp"
|
|
android:paddingEnd="24dp">
|
|
|
|
<TextView
|
|
style="@style/TextAppearance.AppCompat.Small"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="16dp"
|
|
android:layout_marginBottom="8dp"
|
|
android:text="@string/attendance_config_title" />
|
|
|
|
<CheckBox
|
|
android:id="@+id/useSymbols"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:minHeight="32dp"
|
|
android:text="@string/attendance_config_use_symbols" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:paddingBottom="4dp"
|
|
android:text="@string/attendance_config_use_symbols_hint"
|
|
android:textAppearance="@style/NavView.TextView.Helper"
|
|
android:textSize="12sp"
|
|
android:textStyle="italic" />
|
|
|
|
<CheckBox
|
|
android:id="@+id/groupConsecutiveDays"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:minHeight="32dp"
|
|
android:text="@string/attendance_config_group_consecutive_days" />
|
|
|
|
<CheckBox
|
|
android:id="@+id/showPresenceInMonth"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:minHeight="32dp"
|
|
android:text="@string/attendance_config_show_presence_in_month"
|
|
android:visibility="gone" />
|
|
</LinearLayout>
|
|
</ScrollView>
|
|
</layout>
|