mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-16 22:45:04 -05:00
f31b2702a4
Conflicts: src/com/android/email/Email.java
112 lines
3.2 KiB
Java
112 lines
3.2 KiB
Java
|
|
package com.fsck.k9.activity.setup;
|
|
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.os.Bundle;
|
|
import android.text.Editable;
|
|
import android.text.TextWatcher;
|
|
import android.text.method.TextKeyListener;
|
|
import android.text.method.TextKeyListener.Capitalize;
|
|
import android.view.View;
|
|
import android.view.View.OnClickListener;
|
|
import android.widget.Button;
|
|
import android.widget.EditText;
|
|
import com.fsck.k9.*;
|
|
import com.fsck.k9.activity.FolderList;
|
|
|
|
public class AccountSetupNames extends K9Activity implements OnClickListener
|
|
{
|
|
private static final String EXTRA_ACCOUNT = "account";
|
|
|
|
private EditText mDescription;
|
|
|
|
private EditText mName;
|
|
|
|
private Account mAccount;
|
|
|
|
private Button mDoneButton;
|
|
|
|
public static void actionSetNames(Context context, Account account)
|
|
{
|
|
Intent i = new Intent(context, AccountSetupNames.class);
|
|
i.putExtra(EXTRA_ACCOUNT, account);
|
|
context.startActivity(i);
|
|
}
|
|
|
|
@Override
|
|
public void onCreate(Bundle savedInstanceState)
|
|
{
|
|
super.onCreate(savedInstanceState);
|
|
setContentView(R.layout.account_setup_names);
|
|
mDescription = (EditText)findViewById(R.id.account_description);
|
|
mName = (EditText)findViewById(R.id.account_name);
|
|
mDoneButton = (Button)findViewById(R.id.done);
|
|
mDoneButton.setOnClickListener(this);
|
|
|
|
TextWatcher validationTextWatcher = new TextWatcher()
|
|
{
|
|
public void afterTextChanged(Editable s)
|
|
{
|
|
validateFields();
|
|
}
|
|
|
|
public void beforeTextChanged(CharSequence s, int start, int count, int after)
|
|
{
|
|
}
|
|
|
|
public void onTextChanged(CharSequence s, int start, int before, int count)
|
|
{
|
|
}
|
|
};
|
|
mName.addTextChangedListener(validationTextWatcher);
|
|
|
|
mName.setKeyListener(TextKeyListener.getInstance(false, Capitalize.WORDS));
|
|
|
|
mAccount = (Account)getIntent().getSerializableExtra(EXTRA_ACCOUNT);
|
|
|
|
/*
|
|
* Since this field is considered optional, we don't set this here. If
|
|
* the user fills in a value we'll reset the current value, otherwise we
|
|
* just leave the saved value alone.
|
|
*/
|
|
// mDescription.setText(mAccount.getDescription());
|
|
if (mAccount.getName() != null)
|
|
{
|
|
mName.setText(mAccount.getName());
|
|
}
|
|
if (!Utility.requiredFieldValid(mName))
|
|
{
|
|
mDoneButton.setEnabled(false);
|
|
}
|
|
}
|
|
|
|
private void validateFields()
|
|
{
|
|
mDoneButton.setEnabled(Utility.requiredFieldValid(mName));
|
|
Utility.setCompoundDrawablesAlpha(mDoneButton, mDoneButton.isEnabled() ? 255 : 128);
|
|
}
|
|
|
|
private void onNext()
|
|
{
|
|
if (Utility.requiredFieldValid(mDescription))
|
|
{
|
|
mAccount.setDescription(mDescription.getText().toString());
|
|
}
|
|
mAccount.setName(mName.getText().toString());
|
|
mAccount.save(Preferences.getPreferences(this));
|
|
FolderList.actionHandleAccount(this, mAccount, K9.INBOX);
|
|
finish();
|
|
}
|
|
|
|
public void onClick(View v)
|
|
{
|
|
switch (v.getId())
|
|
{
|
|
case R.id.done:
|
|
onNext();
|
|
break;
|
|
}
|
|
}
|
|
}
|