OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SpinnerOption
(Results
1 - 4
of
4
) sorted by null
/packages/apps/Email/src/com/android/email/activity/setup/
SpinnerOption.java
21
public class
SpinnerOption
{
28
SpinnerOption
so = (
SpinnerOption
)spinner.getItemAtPosition(i);
36
public
SpinnerOption
(Object value, String label) {
AccountSetupOptions.java
111
final
SpinnerOption
[] checkFrequencies = new
SpinnerOption
[frequencyEntries.length];
113
checkFrequencies[i] = new
SpinnerOption
(
116
final ArrayAdapter<
SpinnerOption
> checkFrequenciesAdapter =
117
new ArrayAdapter<
SpinnerOption
>(this, android.R.layout.simple_spinner_item,
128
SpinnerOption
.setSpinnerOptionValue(mCheckFrequencyView, account.getSyncInterval());
222
account.setSyncInterval((Integer)((
SpinnerOption
)mCheckFrequencyView
226
(Integer)((
SpinnerOption
)mSyncWindowView.getSelectedItem()).value);
424
final
SpinnerOption
[] windowOptions = new
SpinnerOption
[maxEntry]
[
all
...]
AccountSetupOutgoingFragment.java
114
final
SpinnerOption
securityTypes[] = {
115
new
SpinnerOption
(HostAuth.FLAG_NONE, context.getString(
117
new
SpinnerOption
(HostAuth.FLAG_SSL, context.getString(
119
new
SpinnerOption
(HostAuth.FLAG_SSL | HostAuth.FLAG_TRUST_ALL, context.getString(
121
new
SpinnerOption
(HostAuth.FLAG_TLS, context.getString(
123
new
SpinnerOption
(HostAuth.FLAG_TLS | HostAuth.FLAG_TRUST_ALL, context.getString(
127
final ArrayAdapter<
SpinnerOption
> securityTypesAdapter =
128
new ArrayAdapter<
SpinnerOption
>(context, android.R.layout.simple_spinner_item,
284
SpinnerOption
.setSpinnerOptionValue(mSecurityTypeView, flags);
333
(Integer)((
SpinnerOption
)mSecurityTypeView.getSelectedItem()).value
[
all
...]
AccountSetupIncomingFragment.java
197
SpinnerOption
deletePolicies[] = {
198
new
SpinnerOption
(Account.DELETE_POLICY_NEVER,
201
new
SpinnerOption
(Account.DELETE_POLICY_ON_DELETE,
205
ArrayAdapter<
SpinnerOption
> deletePoliciesAdapter =
206
new ArrayAdapter<
SpinnerOption
>(context,
214
ArrayList<
SpinnerOption
> securityTypes = new ArrayList<
SpinnerOption
>();
216
new
SpinnerOption
(HostAuth.FLAG_NONE, context.getString(
219
new
SpinnerOption
(HostAuth.FLAG_SSL, context.getString(
222
new
SpinnerOption
(HostAuth.FLAG_SSL | HostAuth.FLAG_TRUST_ALL, context.getString
[
all
...]
Completed in 2072 milliseconds