2020-02-23 18:16:50 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-04-12 15:45:20 +00:00
|
|
|
<eu.faircode.email.ScrollViewEx xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-02-23 18:16:50 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="24dp"
|
|
|
|
android:scrollbarStyle="outsideOverlay">
|
|
|
|
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
2020-02-28 16:34:43 +00:00
|
|
|
<eu.faircode.email.FixedTextView
|
2020-02-23 18:16:50 +00:00
|
|
|
android:id="@+id/tvImportant"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/title_hint_important"
|
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
2020-04-08 17:01:56 +00:00
|
|
|
android:textStyle="bold"
|
2020-02-23 18:16:50 +00:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
2020-02-28 16:34:43 +00:00
|
|
|
<eu.faircode.email.FixedTextView
|
2020-02-23 18:16:50 +00:00
|
|
|
android:id="@+id/tvSync"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="12dp"
|
|
|
|
android:text="@string/title_hint_sync"
|
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Small"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/tvImportant" />
|
|
|
|
|
2020-02-28 16:34:43 +00:00
|
|
|
<eu.faircode.email.FixedTextView
|
2020-02-23 18:16:50 +00:00
|
|
|
android:id="@+id/tvBattery"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="12dp"
|
|
|
|
android:text="@string/title_hint_battery"
|
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Small"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/tvSync" />
|
|
|
|
|
|
|
|
<Button
|
2020-04-20 08:05:15 +00:00
|
|
|
android:id="@+id/btnBatteryInfo"
|
2020-02-23 18:16:50 +00:00
|
|
|
style="?android:attr/buttonStyleSmall"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/title_info"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/tvBattery" />
|
2020-04-08 16:54:19 +00:00
|
|
|
|
|
|
|
<eu.faircode.email.FixedTextView
|
|
|
|
android:id="@+id/tvReformat"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/title_hint_reformat"
|
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Small"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2020-04-20 08:05:15 +00:00
|
|
|
app:layout_constraintTop_toBottomOf="@id/btnBatteryInfo" />
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/btnReformatInfo"
|
|
|
|
style="?android:attr/buttonStyleSmall"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/title_info"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/tvReformat" />
|
2020-02-23 18:16:50 +00:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
2020-04-12 15:45:20 +00:00
|
|
|
</eu.faircode.email.ScrollViewEx>
|