mirror of
https://github.com/moparisthebest/k-9
synced 2025-01-10 13:18:09 -05:00
d13aa61de3
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].
22 lines
775 B
XML
22 lines
775 B
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" >
|
|
<EditText
|
|
android:id="@+id/create_folder_text"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:hint="@string/create_folder_hint" />
|
|
<CheckBox
|
|
android:id="@+id/create_folder_local"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="fill_parent"
|
|
android:text="@string/create_folder_local"
|
|
android:textColor="#FFF"
|
|
android:checked="false" />
|
|
</LinearLayout>
|