mirror of
https://github.com/moparisthebest/k-9
synced 2025-01-10 05:08:18 -05:00
31 lines
1.2 KiB
XML
31 lines
1.2 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout
|
||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:id="@+id/layout_root"
|
||
|
android:orientation="vertical"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="fill_parent"
|
||
|
android:padding="10dp" >
|
||
|
<TextView
|
||
|
android:id="@+id/clear_local_folder_text"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="fill_parent"
|
||
|
android:text="@+string/clear_local_folder_text"
|
||
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
||
|
android:textColor="#FFF" />
|
||
|
<TextView
|
||
|
android:id="@+id/clear_local_only_folder_text"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="fill_parent"
|
||
|
android:text="@+string/clear_local_only_folder_text"
|
||
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
||
|
android:textColor="#FFF" />
|
||
|
<CheckBox
|
||
|
android:id="@+id/clear_local_folder_all"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="fill_parent"
|
||
|
android:text="@string/clear_local_folder_all"
|
||
|
android:textColor="#FFF"
|
||
|
android:checked="false" />
|
||
|
</LinearLayout>
|