/* * Copyright (C) 2008 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.android.email.activity.setup; import android.app.Activity; import android.content.Context; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.widget.ArrayAdapter; import android.widget.CheckBox; import android.widget.Spinner; import com.android.email.Account; import com.android.email.Email; import com.android.email.Preferences; import com.android.email.R; public class AccountSetupOptions extends Activity implements OnClickListener { private static final String EXTRA_ACCOUNT = "account"; private static final String EXTRA_MAKE_DEFAULT = "makeDefault"; private Spinner mCheckFrequencyView; private CheckBox mDefaultView; private CheckBox mNotifyView; private Account mAccount; public static void actionOptions(Context context, Account account, boolean makeDefault) { Intent i = new Intent(context, AccountSetupOptions.class); i.putExtra(EXTRA_ACCOUNT, account); i.putExtra(EXTRA_MAKE_DEFAULT, makeDefault); context.startActivity(i); } @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.account_setup_options); mCheckFrequencyView = (Spinner)findViewById(R.id.account_check_frequency); mDefaultView = (CheckBox)findViewById(R.id.account_default); mNotifyView = (CheckBox)findViewById(R.id.account_notify); findViewById(R.id.next).setOnClickListener(this); // NOTE: If you change these values, confirm that the new intervals exist in arrays.xml // NOTE: It would be cleaner if the numeric values were obtained from the // account_settings_check_frequency_values, array, so the options could be controlled // entirely via XML. SpinnerOption checkFrequencies[] = { new SpinnerOption(-1, getString(R.string.account_setup_options_mail_check_frequency_never)), new SpinnerOption(5, getString(R.string.account_setup_options_mail_check_frequency_5min)), new SpinnerOption(10, getString(R.string.account_setup_options_mail_check_frequency_10min)), new SpinnerOption(15, getString(R.string.account_setup_options_mail_check_frequency_15min)), new SpinnerOption(30, getString(R.string.account_setup_options_mail_check_frequency_30min)), new SpinnerOption(60, getString(R.string.account_setup_options_mail_check_frequency_1hour)), }; ArrayAdapter<SpinnerOption> checkFrequenciesAdapter = new ArrayAdapter<SpinnerOption>(this, android.R.layout.simple_spinner_item, checkFrequencies); checkFrequenciesAdapter .setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item); mCheckFrequencyView.setAdapter(checkFrequenciesAdapter); mAccount = (Account)getIntent().getSerializableExtra(EXTRA_ACCOUNT); boolean makeDefault = getIntent().getBooleanExtra(EXTRA_MAKE_DEFAULT, false); if (mAccount.equals(Preferences.getPreferences(this).getDefaultAccount()) || makeDefault) { mDefaultView.setChecked(true); } mNotifyView.setChecked(mAccount.isNotifyNewMail()); SpinnerOption.setSpinnerOptionValue(mCheckFrequencyView, mAccount .getAutomaticCheckIntervalMinutes()); } private void onDone() { mAccount.setDescription(mAccount.getEmail()); mAccount.setNotifyNewMail(mNotifyView.isChecked()); mAccount.setAutomaticCheckIntervalMinutes((Integer)((SpinnerOption)mCheckFrequencyView .getSelectedItem()).value); mAccount.save(Preferences.getPreferences(this)); if (mDefaultView.isChecked()) { Preferences.getPreferences(this).setDefaultAccount(mAccount); } Email.setServicesEnabled(this); AccountSetupNames.actionSetNames(this, mAccount); finish(); } public void onClick(View v) { switch (v.getId()) { case R.id.next: onDone(); break; } } }