2019-06-03 23:25:05 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
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
|
|
|
|
|
|
|
<ScrollView
|
|
|
|
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
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="10dp">
|
|
|
|
|
|
|
|
<include
|
|
|
|
android:id="@+id/timeLayout"
|
2020-03-15 16:09:26 +01:00
|
|
|
layout="@layout/layout_settings_appearance" />
|
2019-06-03 23:25:05 +02:00
|
|
|
|
|
|
|
<View
|
2020-03-06 14:46:22 +01:00
|
|
|
android:id="@+id/fileViewDivider"
|
2019-06-03 23:25:05 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:layout_marginStart="44dp"
|
|
|
|
android:layout_marginEnd="5dp"
|
|
|
|
android:layout_marginTop="20dp"
|
|
|
|
android:layout_marginBottom="20dp"
|
2020-03-15 16:09:26 +01:00
|
|
|
android:layout_below="@id/timeLayout" />
|
2019-06-03 23:25:05 +02:00
|
|
|
|
2020-03-06 14:46:22 +01:00
|
|
|
<include
|
|
|
|
android:id="@+id/fileViewLayout"
|
|
|
|
layout="@layout/layout_settings_fileview"/>
|
|
|
|
|
|
|
|
<View
|
2020-04-02 17:49:26 +02:00
|
|
|
android:id="@+id/securityDivider"
|
2020-03-06 14:46:22 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:layout_marginStart="44dp"
|
|
|
|
android:layout_marginEnd="5dp"
|
|
|
|
android:layout_marginTop="20dp"
|
|
|
|
android:layout_marginBottom="20dp"
|
2020-03-15 16:09:26 +01:00
|
|
|
android:layout_below="@id/fileViewLayout" />
|
2020-03-06 14:46:22 +01:00
|
|
|
|
2020-04-02 02:59:00 +02:00
|
|
|
<include
|
2020-04-02 17:49:26 +02:00
|
|
|
android:id="@+id/securityLayout"
|
|
|
|
layout="@layout/layout_settings_security" />
|
2020-04-02 02:59:00 +02:00
|
|
|
|
|
|
|
<View
|
|
|
|
android:id="@+id/translationDivider"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:layout_marginStart="44dp"
|
|
|
|
android:layout_marginEnd="5dp"
|
|
|
|
android:layout_marginTop="20dp"
|
|
|
|
android:layout_marginBottom="20dp"
|
2020-04-02 17:49:26 +02:00
|
|
|
android:layout_below="@id/securityLayout" />
|
2020-04-02 02:59:00 +02:00
|
|
|
|
2019-06-03 23:25:05 +02:00
|
|
|
<include
|
|
|
|
android:id="@+id/langLayout"
|
2020-03-15 16:09:26 +01:00
|
|
|
layout="@layout/layout_settings_languages" />
|
2019-06-03 23:25:05 +02:00
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
</ScrollView>
|
|
|
|
|
|
|
|
</RelativeLayout>
|