2019-06-03 23:25:05 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-04-26 15:36:33 +02:00
|
|
|
<RelativeLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-10-23 20:13:13 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2019-06-03 23:25:05 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-02-04 15:19:39 +01:00
|
|
|
android:background="?attr/primaryBackgroundColor">
|
2019-06-03 23:25:05 +02:00
|
|
|
|
2020-09-27 09:36:57 +02:00
|
|
|
<androidx.core.widget.NestedScrollView
|
2019-06-03 23:25:05 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-04-18 01:39:49 +02:00
|
|
|
android:background="?attr/primaryBackgroundColor">
|
2019-06-03 23:25:05 +02:00
|
|
|
|
2020-04-26 15:36:33 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/settingsMainFrame"
|
2019-06-03 23:25:05 +02:00
|
|
|
android:layout_width="match_parent"
|
2020-04-26 15:36:33 +02:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_height="wrap_content">
|
2019-06-03 23:25:05 +02:00
|
|
|
|
2020-04-26 15:36:33 +02:00
|
|
|
<LinearLayout
|
2020-10-23 20:13:13 +02:00
|
|
|
android:id="@+id/generalFrame"
|
2020-04-26 15:36:33 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_height="wrap_content"
|
2020-05-14 12:46:49 +02:00
|
|
|
android:layout_marginTop="20dp">
|
2020-04-26 15:36:33 +02:00
|
|
|
|
2020-10-23 20:13:13 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/tvGeneral"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:drawablePadding="24dp"
|
|
|
|
android:paddingStart="12dp"
|
|
|
|
android:paddingEnd="12dp"
|
|
|
|
android:text="@string/settingsGeneralHeader"
|
|
|
|
android:textColor="?attr/primaryTextColor"
|
|
|
|
android:textSize="16sp"
|
|
|
|
app:drawableStartCompat="@drawable/ic_otp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/generalHintText"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:paddingStart="60dp"
|
|
|
|
android:paddingEnd="12dp"
|
|
|
|
android:text="@string/generalHintText"
|
|
|
|
android:textColor="?attr/primaryTextColor"
|
|
|
|
android:textSize="12sp" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/appearanceFrame"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="25dp">
|
|
|
|
|
2020-04-26 15:36:33 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/tvAppearance"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:drawablePadding="24dp"
|
2020-05-14 12:46:49 +02:00
|
|
|
android:paddingStart="12dp"
|
|
|
|
android:paddingEnd="12dp"
|
2020-04-26 15:36:33 +02:00
|
|
|
android:text="@string/settingsAppearanceHeader"
|
|
|
|
android:textColor="?attr/primaryTextColor"
|
2020-10-23 20:13:13 +02:00
|
|
|
android:textSize="16sp"
|
|
|
|
app:drawableStartCompat="@drawable/ic_appearance" />
|
2020-04-26 15:36:33 +02:00
|
|
|
|
|
|
|
<TextView
|
2020-05-14 12:46:49 +02:00
|
|
|
android:id="@+id/appearanceHintText"
|
2020-04-26 15:36:33 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:paddingStart="60dp"
|
|
|
|
android:paddingEnd="12dp"
|
2020-06-06 21:41:19 +02:00
|
|
|
android:text="@string/appearanceHintText"
|
2020-04-26 15:36:33 +02:00
|
|
|
android:textColor="?attr/primaryTextColor"
|
|
|
|
android:textSize="12sp" />
|
2019-06-03 23:25:05 +02:00
|
|
|
|
2020-04-26 15:36:33 +02:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/fileViewerFrame"
|
2019-06-03 23:25:05 +02:00
|
|
|
android:layout_width="match_parent"
|
2020-04-26 15:36:33 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_marginTop="25dp">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/fileViewer"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:drawablePadding="24dp"
|
2020-05-14 12:46:49 +02:00
|
|
|
android:paddingStart="12dp"
|
|
|
|
android:paddingEnd="12dp"
|
2020-04-26 15:36:33 +02:00
|
|
|
android:text="@string/fileViewerHeader"
|
|
|
|
android:textColor="?attr/primaryTextColor"
|
2020-10-23 20:13:13 +02:00
|
|
|
android:textSize="16sp"
|
|
|
|
app:drawableStartCompat="@drawable/ic_file" />
|
2020-04-26 15:36:33 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/fileViewerHintText"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:paddingStart="60dp"
|
|
|
|
android:paddingEnd="12dp"
|
2020-05-14 12:46:49 +02:00
|
|
|
android:text="@string/fileViewerHintText"
|
2020-04-26 15:36:33 +02:00
|
|
|
android:textColor="?attr/primaryTextColor"
|
|
|
|
android:textSize="12sp" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2020-07-09 13:55:09 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/draftsFrame"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_marginTop="25dp">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/draftsHeader"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:drawablePadding="24dp"
|
|
|
|
android:paddingStart="12dp"
|
|
|
|
android:paddingEnd="12dp"
|
|
|
|
android:text="@string/draftsHeader"
|
|
|
|
android:textColor="?attr/primaryTextColor"
|
2020-10-23 20:13:13 +02:00
|
|
|
android:textSize="16sp"
|
|
|
|
app:drawableStartCompat="@drawable/ic_drafts" />
|
2020-07-09 13:55:09 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/draftsHintText"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:paddingStart="60dp"
|
|
|
|
android:paddingEnd="12dp"
|
|
|
|
android:text="@string/draftsHintText"
|
|
|
|
android:textColor="?attr/primaryTextColor"
|
|
|
|
android:textSize="12sp" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2020-04-26 15:36:33 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/securityFrame"
|
2020-03-06 14:46:22 +01:00
|
|
|
android:layout_width="match_parent"
|
2020-04-26 15:36:33 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_marginTop="25dp">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/tvSecurity"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:drawablePadding="24dp"
|
2020-05-14 12:46:49 +02:00
|
|
|
android:paddingStart="12dp"
|
|
|
|
android:paddingEnd="12dp"
|
2020-04-26 15:36:33 +02:00
|
|
|
android:text="@string/settingsSecurityHeader"
|
|
|
|
android:textColor="?attr/primaryTextColor"
|
2020-10-23 20:13:13 +02:00
|
|
|
android:textSize="16sp"
|
|
|
|
app:drawableStartCompat="@drawable/ic_security" />
|
2020-04-26 15:36:33 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/securityHintText"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:text="@string/securityHintText"
|
|
|
|
android:paddingStart="60dp"
|
|
|
|
android:paddingEnd="12dp"
|
|
|
|
android:textColor="?attr/primaryTextColor"
|
|
|
|
android:textSize="12sp" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/languagesFrame"
|
2020-04-02 02:59:00 +02:00
|
|
|
android:layout_width="match_parent"
|
2020-04-26 15:36:33 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_marginTop="25dp">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/tvLanguages"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:drawablePadding="24dp"
|
2020-05-14 12:46:49 +02:00
|
|
|
android:paddingStart="12dp"
|
|
|
|
android:paddingEnd="12dp"
|
2020-04-26 15:36:33 +02:00
|
|
|
android:text="@string/settingsLanguageHeaderText"
|
|
|
|
android:textColor="?attr/primaryTextColor"
|
2020-10-23 20:13:13 +02:00
|
|
|
android:textSize="16sp"
|
|
|
|
app:drawableStartCompat="@drawable/ic_flag" />
|
2020-04-26 15:36:33 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/languagesHintText"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:text="@string/languagesHintText"
|
|
|
|
android:paddingStart="60dp"
|
|
|
|
android:paddingEnd="12dp"
|
|
|
|
android:textColor="?attr/primaryTextColor"
|
|
|
|
android:textSize="12sp" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/reportsFrame"
|
2020-04-18 01:39:49 +02:00
|
|
|
android:layout_width="match_parent"
|
2020-04-26 15:36:33 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_marginTop="25dp">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/appReports"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:drawablePadding="24dp"
|
2020-05-14 12:46:49 +02:00
|
|
|
android:paddingStart="12dp"
|
|
|
|
android:paddingEnd="12dp"
|
2020-04-26 15:36:33 +02:00
|
|
|
android:text="@string/reportViewerHeader"
|
|
|
|
android:textColor="?attr/primaryTextColor"
|
2020-10-23 20:13:13 +02:00
|
|
|
android:textSize="16sp"
|
|
|
|
app:drawableStartCompat="@drawable/ic_bug_report" />
|
2020-04-26 15:36:33 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/reportsHintText"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:text="@string/reportsHintText"
|
|
|
|
android:paddingStart="60dp"
|
|
|
|
android:paddingEnd="12dp"
|
|
|
|
android:textColor="?attr/primaryTextColor"
|
|
|
|
android:textSize="12sp" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2020-09-27 09:36:57 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/rateAppFrame"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_marginTop="25dp">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/rateApp"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:drawableStart="@drawable/ic_like"
|
|
|
|
android:drawablePadding="24dp"
|
|
|
|
android:paddingStart="12dp"
|
|
|
|
android:paddingEnd="12dp"
|
|
|
|
android:text="@string/navRate"
|
|
|
|
android:textColor="?attr/primaryTextColor"
|
|
|
|
android:textSize="16sp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/rateAppHintText"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:text="@string/rateAppHintText"
|
|
|
|
android:paddingStart="60dp"
|
|
|
|
android:paddingEnd="12dp"
|
|
|
|
android:textColor="?attr/primaryTextColor"
|
|
|
|
android:textSize="12sp" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/aboutAppFrame"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
2020-10-23 20:13:13 +02:00
|
|
|
android:layout_marginTop="25dp"
|
|
|
|
android:layout_marginBottom="20dp">
|
2020-09-27 09:36:57 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/aboutApp"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:drawablePadding="24dp"
|
|
|
|
android:paddingStart="12dp"
|
|
|
|
android:paddingEnd="12dp"
|
|
|
|
android:text="@string/navAbout"
|
|
|
|
android:textColor="?attr/primaryTextColor"
|
2020-10-23 20:13:13 +02:00
|
|
|
android:textSize="16sp"
|
|
|
|
app:drawableStartCompat="@drawable/ic_info" />
|
2020-09-27 09:36:57 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/aboutAppHintText"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:text="@string/aboutAppHintText"
|
|
|
|
android:paddingStart="60dp"
|
|
|
|
android:paddingEnd="12dp"
|
|
|
|
android:textColor="?attr/primaryTextColor"
|
|
|
|
android:textSize="12sp" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2020-04-26 15:36:33 +02:00
|
|
|
</LinearLayout>
|
2019-06-03 23:25:05 +02:00
|
|
|
|
2020-09-27 09:36:57 +02:00
|
|
|
</androidx.core.widget.NestedScrollView>
|
2019-06-03 23:25:05 +02:00
|
|
|
|
2020-06-06 21:41:19 +02:00
|
|
|
</RelativeLayout>
|