1
0
mirror of https://github.com/moparisthebest/k-9 synced 2025-01-10 05:08:18 -05:00
k-9/res/layout/clear_local_folder.xml
ashley willis d13aa61de3 Added "advanced options" option and more support for local-only messages and folders:
added message upload support.
added advanced option to create local-only folder.
disabled sync & push for local-only folders.
hid expunge, check_mail, and "Load up to x more" for local-only folders.
hid create/rename/delete folder options for webdav (someone give me a webdav account).
added advanced option to change if a folder is local-only or syncable.
add dialog to confirm clearing local messages, and if it should include local-only messages or just synced messages.
added advanced option to automatically upload on move from local-only to syncable.
changed background color in message list and subject color in message view of local-only messages.
changed: keep local-only messages in folders no longer on server instead of deleting folder, and mark folder as local-only.
added automatically fully downloading messages moved/copied to local-only folder.
added advanced options option (if not enabled, those settings will be hidden).
reworked onCreateFolder(), onRenameFolder(), onDeleteFolder().
added Store.isAppendCapable().
added LocalFolder.expunge() [unused].
2012-02-05 02:15:54 -06:00

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>