mirror of https://github.com/M66B/FairEmail.git
38 lines
1.6 KiB
XML
38 lines
1.6 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:padding="12dp"
|
||
|
android:scrollbarStyle="outsideOverlay"
|
||
|
tools:context=".ActivitySetup">
|
||
|
|
||
|
<androidx.constraintlayout.widget.ConstraintLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content">
|
||
|
|
||
|
<androidx.appcompat.widget.SwitchCompat
|
||
|
android:id="@+id/swDisableTracking"
|
||
|
android:layout_width="0dp"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:checked="true"
|
||
|
android:text="@string/title_advanced_tracking"
|
||
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
app:layout_constraintStart_toStartOf="parent"
|
||
|
app:layout_constraintTop_toTopOf="parent"
|
||
|
app:switchPadding="12dp" />
|
||
|
|
||
|
<androidx.appcompat.widget.SwitchCompat
|
||
|
android:id="@+id/swNoHistory"
|
||
|
android:layout_width="0dp"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginTop="12dp"
|
||
|
android:text="@string/title_advanced_recents"
|
||
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
app:layout_constraintStart_toStartOf="parent"
|
||
|
app:layout_constraintTop_toBottomOf="@id/swDisableTracking"
|
||
|
app:switchPadding="12dp" />
|
||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
||
|
</ScrollView>
|