HomeSort by relevance Sort by last modified time
    Searched refs:text1 (Results 51 - 75 of 161) sorted by null

1 23 4 5 6 7

  /development/tutorials/NotepadCodeLab/Notepadv2/src/com/android/demo/notepad2/
Notepadv2.java 59 // and an array of the fields we want to bind those fields to (in this case just text1)
60 int[] to = new int[]{R.id.text1};
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListWithDisappearingItemBug.java 57 // The "text1" view defined in the XML template
58 new int[] {R.id.text1});
  /packages/apps/Mms/src/com/android/mms/ui/
IconListAdapter.java 51 mTextView = (TextView) mView.findViewById(R.id.text1);
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/res/
TestAttributeSetTest.java 35 attributes.put("android:id", "@android:id/text1");
37 assertThat(testAttributeSet.getAttributeResourceValue("android", "id", 0), equalTo(android.R.id.text1));
42 attributes.put("id", "@id/text1");
56 attributes.put("android:id", "@+id/text1");
59 assertThat(testAttributeSet.getAttributeResourceValue("android", "id", 0), equalTo(android.R.id.text1));
64 attributes.put("android:id", "@+id/text1");
67 assertThat(testAttributeSet.getAttributeResourceValue("android", "id", 0), equalTo(R.id.text1));
ViewLoaderTest.java 70 TextView textView = (TextView) view.findViewById(android.R.id.text1);
78 TextView textView = (TextView) view.findViewById(android.R.id.text1);
86 TextView textView = (TextView) view.findViewById(android.R.id.text1);
94 TextView textView = (TextView) view.findViewById(android.R.id.text1);
102 TextView textView = (TextView) view.findViewById(android.R.id.text1);
111 TextView textView = (TextView) view.findViewById(android.R.id.text1);
120 TextView textView = (TextView) view.findViewById(android.R.id.text1);
  /frameworks/support/v7/mediarouter/src/android/support/v7/app/
MediaRouteChooserDialog.java 202 TextView text1 = (TextView)view.findViewById(android.R.id.text1); local
204 text1.setText(route.getName());
  /packages/apps/ContactsCommon/src/com/android/contacts/common/util/
AccountSelectionUtil.java 117 final TextView text1 =
118 (TextView)convertView.findViewById(android.R.id.text1);
127 text1.setText(account.name);
  /frameworks/base/core/java/android/widget/
SuggestionsAdapter.java 299 mText1 = (TextView) v.findViewById(com.android.internal.R.id.text1);
316 String text1 = getStringOrNull(cursor, mText1Col); local
317 setViewText(views.mText1, text1);
465 String text1 = getColumnString(cursor, SearchManager.SUGGEST_COLUMN_TEXT_1); local
466 if (text1 != null) {
467 return text1;
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
SuggestionsAdapter.java 259 mText1 = (TextView) v.findViewById(android.R.id.text1);
276 String text1 = getStringOrNull(cursor, mText1Col); local
277 setViewText(views.mText1, text1);
425 String text1 = getColumnString(cursor, SearchManager.SUGGEST_COLUMN_TEXT_1); local
426 if (text1 != null) {
427 return text1;
  /packages/apps/Contacts/src/com/android/contacts/group/
SuggestedMemberListAdapter.java 135 TextView text1 = (TextView) result.findViewById(R.id.text1); local
138 text1.setText(member.getDisplayName());
  /development/samples/AppNavigation/src/com/example/android/appnavigation/app/
AppNavHomeActivity.java 113 convertView.setTag(convertView.findViewById(android.R.id.text1));
  /development/samples/SupportAppNavigation/src/com/example/android/support/appnavigation/app/
AppNavHomeActivity.java 113 convertView.setTag(convertView.findViewById(android.R.id.text1));
  /development/samples/training/EffectiveNavigation/src/com/example/android/effectivenavigation/
CollectionDemoActivity.java 143 ((TextView) rootView.findViewById(android.R.id.text1)).setText(
  /development/tutorials/NotepadCodeLab/Notepadv3Solution/src/com/android/demo/notepad3/
Notepadv3.java 59 // and an array of the fields we want to bind those fields to (in this case just text1)
60 int[] to = new int[]{R.id.text1};
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/
R.java 26 public static final int text1 = nextId++; field in class:R.id
  /frameworks/base/core/java/android/content/
SyncActivityTooManyDeletes.java 70 android.R.id.text1,
  /packages/apps/Music/src/com/android/music/
VideoBrowserActivity.java 73 new int[] { android.R.id.text1 });
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
BaseSuggestionView.java 57 mText1 = (TextView) findViewById(R.id.text1);
  /cts/tests/src/android/app/cts/
ExpandableListTestActivity.java 71 new String[] { NAME, IS_EVEN }, new int[] { R.id.text1, R.id.text2 }, childData,
73 new String[] { NAME, IS_EVEN }, new int[] { R.id.text1, R.id.text2 });
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
CustomContactListFilterActivity.java 577 final TextView text1 = (TextView)convertView.findViewById(android.R.id.text1); local
585 text1.setText(account.mName);
586 text1.setVisibility(account.mName == null ? View.GONE : View.VISIBLE);
600 final TextView text1 = (TextView)convertView.findViewById(android.R.id.text1); local
613 text1.setText(groupTitle);
618 text1.setText(R.string.display_more_groups);
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
ShortcutsProvider.java 160 String text1 = shortcut.getAsString(SearchManager.SUGGEST_COLUMN_TEXT_1); local
177 suggestion.setText1(text1);
SuggestionData.java 137 public SuggestionData setText1(String text1) {
138 mText1 = text1;
322 appendField(builder, "text1", mText1);
  /development/samples/training/ContactsList/src/com/example/android/contactslist/ui/
ContactsListFragment.java 703 holder.text1 = (TextView) itemLayout.findViewById(android.R.id.text1);
842 TextView text1; field in class:ContactsListFragment.ContactsAdapter.ViewHolder
    [all...]
  /frameworks/base/core/java/com/android/internal/app/
MediaRouteChooserDialogFragment.java 197 public TextView text1; field in class:MediaRouteChooserDialogFragment.ViewHolder
400 holder.text1 = (TextView) convertView.findViewById(R.id.text1);
444 holder.text1.setText(info.getName(getActivity()));
484 holder.text1.setText(cat.getName(getActivity()));
  /cts/tests/tests/widget/src/android/widget/cts/
ArrayAdapterTest.java 51 new ArrayAdapter<String>(mContext, R.layout.simple_dropdown_item_1line, R.id.text1);
57 new ArrayAdapter<String>(mContext, R.layout.simple_dropdown_item_1line, R.id.text1,
66 new ArrayAdapter<String>(mContext, R.layout.simple_dropdown_item_1line, R.id.text1, list);

Completed in 710 milliseconds

1 23 4 5 6 7