mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-27 19:52:17 -05:00
Changed UI to allow selecting the empty IMAP namespace
This commit is contained in:
parent
75cdbd860e
commit
017033cd53
@ -98,6 +98,11 @@
|
|||||||
android:layout_width="fill_parent"
|
android:layout_width="fill_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:orientation="vertical">
|
android:orientation="vertical">
|
||||||
|
<CheckBox
|
||||||
|
android:id="@+id/imap_autodetect_namespace"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:text="@string/account_setup_incoming_autodetect_namespace_label" />
|
||||||
<TextView
|
<TextView
|
||||||
android:text="@string/account_setup_incoming_imap_path_prefix_label"
|
android:text="@string/account_setup_incoming_imap_path_prefix_label"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
@ -106,7 +111,6 @@
|
|||||||
android:textColor="?android:attr/textColorPrimary" />
|
android:textColor="?android:attr/textColorPrimary" />
|
||||||
<EditText
|
<EditText
|
||||||
android:id="@+id/imap_path_prefix"
|
android:id="@+id/imap_path_prefix"
|
||||||
android:hint="@string/account_setup_incoming_imap_path_prefix_hint"
|
|
||||||
android:singleLine="true"
|
android:singleLine="true"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_width="fill_parent"
|
android:layout_width="fill_parent"
|
||||||
|
@ -427,8 +427,8 @@ Welcome to K-9 Mail setup. K-9 is an open source mail client for Android origin
|
|||||||
<string name="account_setup_expunge_policy_on_poll">When polling</string>
|
<string name="account_setup_expunge_policy_on_poll">When polling</string>
|
||||||
<string name="account_setup_expunge_policy_manual">Only manually</string>
|
<string name="account_setup_expunge_policy_manual">Only manually</string>
|
||||||
|
|
||||||
|
<string name="account_setup_incoming_autodetect_namespace_label">Auto-detect IMAP namespace</string>
|
||||||
<string name="account_setup_incoming_imap_path_prefix_label">IMAP path prefix</string>
|
<string name="account_setup_incoming_imap_path_prefix_label">IMAP path prefix</string>
|
||||||
<string name="account_setup_incoming_imap_path_prefix_hint">(Automatic using NAMESPACE if available)</string>
|
|
||||||
|
|
||||||
<string name="drafts_folder_label">Drafts folder</string>
|
<string name="drafts_folder_label">Drafts folder</string>
|
||||||
<string name="sent_folder_label">Sent folder</string>
|
<string name="sent_folder_label">Sent folder</string>
|
||||||
|
@ -11,6 +11,7 @@ import android.util.Log;
|
|||||||
import android.view.View;
|
import android.view.View;
|
||||||
import android.view.View.OnClickListener;
|
import android.view.View.OnClickListener;
|
||||||
import android.widget.*;
|
import android.widget.*;
|
||||||
|
import android.widget.CompoundButton.OnCheckedChangeListener;
|
||||||
|
|
||||||
import com.fsck.k9.*;
|
import com.fsck.k9.*;
|
||||||
import com.fsck.k9.activity.K9Activity;
|
import com.fsck.k9.activity.K9Activity;
|
||||||
@ -68,6 +69,7 @@ public class AccountSetupIncoming extends K9Activity implements OnClickListener
|
|||||||
private EditText mPortView;
|
private EditText mPortView;
|
||||||
private Spinner mSecurityTypeView;
|
private Spinner mSecurityTypeView;
|
||||||
private Spinner mAuthTypeView;
|
private Spinner mAuthTypeView;
|
||||||
|
private CheckBox mImapAutoDetectNamespaceView;
|
||||||
private EditText mImapPathPrefixView;
|
private EditText mImapPathPrefixView;
|
||||||
private EditText mWebdavPathPrefixView;
|
private EditText mWebdavPathPrefixView;
|
||||||
private EditText mWebdavAuthPathView;
|
private EditText mWebdavAuthPathView;
|
||||||
@ -106,6 +108,7 @@ public class AccountSetupIncoming extends K9Activity implements OnClickListener
|
|||||||
mPortView = (EditText)findViewById(R.id.account_port);
|
mPortView = (EditText)findViewById(R.id.account_port);
|
||||||
mSecurityTypeView = (Spinner)findViewById(R.id.account_security_type);
|
mSecurityTypeView = (Spinner)findViewById(R.id.account_security_type);
|
||||||
mAuthTypeView = (Spinner)findViewById(R.id.account_auth_type);
|
mAuthTypeView = (Spinner)findViewById(R.id.account_auth_type);
|
||||||
|
mImapAutoDetectNamespaceView = (CheckBox)findViewById(R.id.imap_autodetect_namespace);
|
||||||
mImapPathPrefixView = (EditText)findViewById(R.id.imap_path_prefix);
|
mImapPathPrefixView = (EditText)findViewById(R.id.imap_path_prefix);
|
||||||
mWebdavPathPrefixView = (EditText)findViewById(R.id.webdav_path_prefix);
|
mWebdavPathPrefixView = (EditText)findViewById(R.id.webdav_path_prefix);
|
||||||
mWebdavAuthPathView = (EditText)findViewById(R.id.webdav_auth_path);
|
mWebdavAuthPathView = (EditText)findViewById(R.id.webdav_auth_path);
|
||||||
@ -118,6 +121,18 @@ public class AccountSetupIncoming extends K9Activity implements OnClickListener
|
|||||||
|
|
||||||
mNextButton.setOnClickListener(this);
|
mNextButton.setOnClickListener(this);
|
||||||
|
|
||||||
|
mImapAutoDetectNamespaceView.setOnCheckedChangeListener(new OnCheckedChangeListener() {
|
||||||
|
@Override
|
||||||
|
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
|
||||||
|
mImapPathPrefixView.setEnabled(!isChecked);
|
||||||
|
if (isChecked && mImapPathPrefixView.hasFocus()) {
|
||||||
|
mImapPathPrefixView.focusSearch(View.FOCUS_UP).requestFocus();
|
||||||
|
} else if (!isChecked) {
|
||||||
|
mImapPathPrefixView.requestFocus();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
SpinnerOption securityTypes[] = {
|
SpinnerOption securityTypes[] = {
|
||||||
new SpinnerOption(0, getString(R.string.account_setup_incoming_security_none_label)),
|
new SpinnerOption(0, getString(R.string.account_setup_incoming_security_none_label)),
|
||||||
new SpinnerOption(1,
|
new SpinnerOption(1,
|
||||||
@ -234,6 +249,8 @@ public class AccountSetupIncoming extends K9Activity implements OnClickListener
|
|||||||
mAccountPorts = IMAP_PORTS;
|
mAccountPorts = IMAP_PORTS;
|
||||||
|
|
||||||
ImapStoreSettings imapSettings = (ImapStoreSettings) settings;
|
ImapStoreSettings imapSettings = (ImapStoreSettings) settings;
|
||||||
|
|
||||||
|
mImapAutoDetectNamespaceView.setChecked(imapSettings.autoDetectNamespace);
|
||||||
if (imapSettings.pathPrefix != null) {
|
if (imapSettings.pathPrefix != null) {
|
||||||
mImapPathPrefixView.setText(imapSettings.pathPrefix);
|
mImapPathPrefixView.setText(imapSettings.pathPrefix);
|
||||||
}
|
}
|
||||||
@ -382,12 +399,18 @@ public class AccountSetupIncoming extends K9Activity implements OnClickListener
|
|||||||
Map<String, String> extra = null;
|
Map<String, String> extra = null;
|
||||||
if (ImapStore.STORE_TYPE.equals(mStoreType)) {
|
if (ImapStore.STORE_TYPE.equals(mStoreType)) {
|
||||||
extra = new HashMap<String, String>();
|
extra = new HashMap<String, String>();
|
||||||
extra.put(ImapStoreSettings.PATH_PREFIX_KEY, mImapPathPrefixView.getText().toString());
|
extra.put(ImapStoreSettings.AUTODETECT_NAMESPACE_KEY,
|
||||||
|
Boolean.toString(mImapAutoDetectNamespaceView.isChecked()));
|
||||||
|
extra.put(ImapStoreSettings.PATH_PREFIX_KEY,
|
||||||
|
mImapPathPrefixView.getText().toString());
|
||||||
} else if (WebDavStore.STORE_TYPE.equals(mStoreType)) {
|
} else if (WebDavStore.STORE_TYPE.equals(mStoreType)) {
|
||||||
extra = new HashMap<String, String>();
|
extra = new HashMap<String, String>();
|
||||||
extra.put(WebDavStoreSettings.PATH_KEY, mWebdavPathPrefixView.getText().toString());
|
extra.put(WebDavStoreSettings.PATH_KEY,
|
||||||
extra.put(WebDavStoreSettings.AUTH_PATH_KEY, mWebdavAuthPathView.getText().toString());
|
mWebdavPathPrefixView.getText().toString());
|
||||||
extra.put(WebDavStoreSettings.MAILBOX_PATH_KEY, mWebdavMailboxPathView.getText().toString());
|
extra.put(WebDavStoreSettings.AUTH_PATH_KEY,
|
||||||
|
mWebdavAuthPathView.getText().toString());
|
||||||
|
extra.put(WebDavStoreSettings.MAILBOX_PATH_KEY,
|
||||||
|
mWebdavMailboxPathView.getText().toString());
|
||||||
}
|
}
|
||||||
|
|
||||||
ServerSettings settings = new ServerSettings(mStoreType, host, port,
|
ServerSettings settings = new ServerSettings(mStoreType, host, port,
|
||||||
|
Loading…
Reference in New Issue
Block a user