Searched refs:textViewResourceId (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DArrayAdapter.java113 * @param textViewResourceId The id of the TextView within the layout resource to be populated
115 public ArrayAdapter(Context context, int resource, int textViewResourceId) { argument
116 init(context, resource, textViewResourceId, new ArrayList<T>());
137 * @param textViewResourceId The id of the TextView within the layout resource to be populated
140 public ArrayAdapter(Context context, int resource, int textViewResourceId, T[] objects) { argument
141 init(context, resource, textViewResourceId, Arrays.asList(objects));
162 * @param textViewResourceId The id of the TextView within the layout resource to be populated
165 public ArrayAdapter(Context context, int resource, int textViewResourceId, List<T> objects) { argument
166 init(context, resource, textViewResourceId, objects);
308 private void init(Context context, int resource, int textViewResourceId, Lis argument
[all...]
/frameworks/base/core/tests/coretests/src/android/widget/listview/
H A DListWithEmptyView.java36 public CarefulAdapter(Context context, int textViewResourceId) { argument
37 super(context, textViewResourceId);
/frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
H A DListViewAddRemoveNoTransition.java83 public StableArrayAdapter(Context context, int textViewResourceId, argument
85 super(context, textViewResourceId, objects);
H A DListViewAddRemove.java147 public StableArrayAdapter(Context context, int textViewResourceId, argument
149 super(context, textViewResourceId, objects);
/frameworks/base/core/java/android/accounts/
H A DChooseAccountActivity.java159 public AccountArrayAdapter(Context context, int textViewResourceId, AccountInfo[] infos) { argument
160 super(context, textViewResourceId, infos);
H A DChooseAccountTypeActivity.java175 public AccountArrayAdapter(Context context, int textViewResourceId, argument
177 super(context, textViewResourceId, infos);
/frameworks/base/services/java/com/android/server/
H A DInputMethodManagerService.java2815 public ImeSubtypeListAdapter(Context context, int textViewResourceId, argument
2817 super(context, textViewResourceId, itemsList);
2818 mTextViewResourceId = textViewResourceId;

Completed in 208 milliseconds