FairEmail/app/src/main/res/layout/fragment_options.xml

77 lines
3.4 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
2019-04-22 18:29:46 +00:00
<androidx.constraintlayout.widget.ConstraintLayout 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"
2019-04-22 18:29:46 +00:00
tools:context=".ActivitySetup">
2019-04-22 18:29:46 +00:00
<ScrollView
android:layout_width="match_parent"
2019-04-22 18:29:46 +00:00
android:layout_height="match_parent"
android:orientation="vertical"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
2019-04-25 12:55:55 +00:00
android:layout_height="wrap_content"
2019-05-05 20:39:44 +00:00
android:paddingTop="24dp"
android:paddingBottom="24dp">
2019-04-22 18:29:46 +00:00
2019-05-05 19:06:03 +00:00
<include
android:id="@+id/sectionGeneral"
layout="@layout/include_options_general"
2019-04-22 18:29:46 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
2019-05-05 20:39:44 +00:00
android:layout_marginTop="24dp"
2019-04-22 18:29:46 +00:00
app:layout_constraintStart_toStartOf="parent"
2019-05-05 19:06:03 +00:00
app:layout_constraintTop_toTopOf="parent" />
2019-04-26 10:45:45 +00:00
2019-05-05 19:06:03 +00:00
<include
android:id="@+id/sectionConnection"
layout="@layout/include_options_connection"
2019-04-22 18:29:46 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
2019-05-05 20:39:44 +00:00
android:layout_marginTop="48dp"
2019-04-22 18:29:46 +00:00
app:layout_constraintStart_toStartOf="parent"
2019-05-05 19:06:03 +00:00
app:layout_constraintTop_toBottomOf="@id/sectionGeneral" />
2019-04-22 18:29:46 +00:00
2019-05-05 19:06:03 +00:00
<include
android:id="@+id/sectionDisplay"
layout="@layout/include_options_display"
2019-04-22 18:29:46 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
2019-05-05 20:39:44 +00:00
android:layout_marginTop="48dp"
2019-04-22 18:29:46 +00:00
app:layout_constraintStart_toStartOf="parent"
2019-05-05 19:06:03 +00:00
app:layout_constraintTop_toBottomOf="@id/sectionConnection" />
2019-04-22 18:29:46 +00:00
2019-05-05 19:06:03 +00:00
<include
android:id="@+id/sectionBehavior"
layout="@layout/include_options_behavior"
2019-04-22 18:29:46 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
2019-05-05 20:39:44 +00:00
android:layout_marginTop="48dp"
2019-04-22 18:29:46 +00:00
app:layout_constraintStart_toStartOf="parent"
2019-05-05 19:06:03 +00:00
app:layout_constraintTop_toBottomOf="@id/sectionDisplay" />
2019-04-22 18:29:46 +00:00
2019-05-05 20:28:07 +00:00
<include
android:id="@+id/sectionNotifications"
layout="@layout/include_options_notifications"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="24dp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/sectionBehavior" />
2019-05-05 19:06:03 +00:00
<include
android:id="@+id/sectionMisc"
layout="@layout/include_options_misc"
2019-04-22 18:29:46 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
2019-05-05 20:39:44 +00:00
android:layout_marginTop="48dp"
2019-04-22 18:29:46 +00:00
app:layout_constraintStart_toStartOf="parent"
2019-05-05 20:28:07 +00:00
app:layout_constraintTop_toBottomOf="@id/sectionNotifications" />
2019-04-22 18:29:46 +00:00
</androidx.constraintlayout.widget.ConstraintLayout>
</ScrollView>
</androidx.constraintlayout.widget.ConstraintLayout>