OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mAccountAdapter
(Results
1 - 3
of
3
) sorted by null
/packages/apps/Browser/src/com/android/browser/widget/
BookmarkWidgetConfigure.java
43
private ArrayAdapter<BookmarkAccount>
mAccountAdapter
;
53
mAccountAdapter
= new ArrayAdapter<BookmarkAccount>(this,
55
setListAdapter(
mAccountAdapter
);
77
BookmarkAccount account =
mAccountAdapter
.getItem(position);
103
mAccountAdapter
.clear();
105
mAccountAdapter
.add(new BookmarkAccount(this, cursor));
/development/samples/ContactManager/src/com/example/android/contactmanager/
ContactAdder.java
56
private AccountAdapter
mAccountAdapter
;
104
mAccountAdapter
= new AccountAdapter(this, mAccounts);
105
mAccountSpinner.setAdapter(
mAccountAdapter
);
264
mAccountAdapter
.notifyDataSetChanged();
/packages/apps/Browser/src/com/android/browser/
AddBookmarkPage.java
125
private ArrayAdapter<BookmarkAccount>
mAccountAdapter
;
443
for (int i = 0; i <
mAccountAdapter
.getCount(); i++) {
444
BookmarkAccount account =
mAccountAdapter
.getItem(i);
495
mAccountAdapter
.clear();
497
mAccountAdapter
.add(new BookmarkAccount(this, cursor));
684
mAccountAdapter
= new ArrayAdapter<BookmarkAccount>(this,
686
mAccountAdapter
.setDropDownViewResource(
689
mAccountSpinner.setAdapter(
mAccountAdapter
);
[
all
...]
Completed in 453 milliseconds