/packages/apps/QuickSearchBox/res/layout/ |
suggestion.xml | 47 <TextView android:id="@+id/text2" 76 android:layout_above="@id/text2" />
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
List3.java | 47 new int[] { android.R.id.text1, android.R.id.text2 });
|
/frameworks/base/core/res/res/layout/ |
simple_dropdown_item_2line.xml | 46 android:id="@android:id/text2"
|
resolve_list_item.xml | 48 <TextView android:id="@android:id/text2"
|
/frameworks/base/core/tests/coretests/src/android/widget/ |
SimpleCursorAdapterTest.java | 56 mTo = new int[]{com.android.internal.R.id.text1, com.android.internal.R.id.text2}; 199 assertEquals(com.android.internal.R.id.text2, viewIds[1]); 227 singleTo = new int[]{com.android.internal.R.id.text2}; 236 assertEquals(com.android.internal.R.id.text2, viewIds[0]);
|
/packages/apps/Contacts/res/layout-finger/ |
display_group.xml | 44 android:id="@android:id/text2"
|
display_child.xml | 47 android:id="@android:id/text2"
|
display_options_phones_only.xml | 45 android:id="@android:id/text2"
|
list_item_text_icons.xml | 52 <TextView android:id="@android:id/text2"
|
/packages/apps/Email/res/layout/ |
recipient_dropdown_item.xml | 35 <TextView android:id="@+id/text2"
|
/packages/apps/IM/res/layout/ |
group_view.xml | 36 <TextView android:id="@+id/text2"
|
/packages/apps/Contacts/src/com/android/contacts/util/ |
AccountSelectionUtil.java | 117 final TextView text2 = 118 (TextView)convertView.findViewById(android.R.id.text2); 127 text2.setText(source.getDisplayLabel(context));
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
GlobalSearchSupport.java | 125 String text2; field in class:GlobalSearchSupport.SearchSuggestion 148 text2 = organization; 150 text2 = phoneNumber; 152 text2 = email; 189 list.add(text2); 208 list.add(text2);
|
/packages/apps/Contacts/src/com/android/contacts/ui/ |
ContactsPreferencesActivity.java | 150 final TextView text2 = (TextView)mHeaderPhones.findViewById(android.R.id.text2); local 152 text2.setText(R.string.showFilterPhonesDescrip); 688 final TextView text2 = (TextView)convertView.findViewById(android.R.id.text2); 709 // text2.setText(descrip); 710 text2.setVisibility(View.GONE); 715 text2.setVisibility(View.GONE); 729 final TextView text2 = (TextView)convertView.findViewById(android.R.id.text2); [all...] |
/packages/apps/Email/tests/src/com/android/email/mail/ |
MessageTestUtils.java | 40 * String text2 = new TextBuilder("<html>").text("<head></head>") 42 * String text2 = new TextBuilder("<html>").text("<head></head>") 49 * .addBodyPart(MessageTestUtils.textPart("text/html", text2 + text1))
|
/packages/apps/Phone/res/layout/ |
ongoing_call_notification.xml | 50 <TextView android:id="@+id/text2"
|
/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/ |
SuggestionCursorUtil.java | 54 assertEquals(message + ", text2", expected.getSuggestionText2(),
|
/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 });
|
/frameworks/base/core/java/android/app/ |
SuggestionsAdapter.java | 276 mText2 = (TextView) v.findViewById(com.android.internal.R.id.text2); 299 CharSequence text2 = getStringOrNull(cursor, mText2UrlCol); local 300 if (text2 != null) { 301 text2 = formatUrl(text2); 303 text2 = getStringOrNull(cursor, mText2Col); 308 if (TextUtils.isEmpty(text2)) { 319 setViewText(views.mText2, text2);
|
/packages/apps/Browser/tests/src/com/android/browser/ |
BrowserProviderTests.java | 117 String text2 = getCol(c, SearchManager.SUGGEST_COLUMN_TEXT_2); local 118 assertNotNull(text2);
|
/frameworks/base/core/java/com/android/internal/app/ |
ResolverActivity.java | 407 TextView text2 = (TextView)view.findViewById(com.android.internal.R.id.text2); local 411 text2.setVisibility(View.VISIBLE); 412 text2.setText(info.extendedInfo); 414 text2.setVisibility(View.GONE);
|
/packages/apps/IM/src/com/android/im/app/ |
ContactListTreeAdapter.java | 392 TextView text2 = (TextView)v.findViewById(R.id.text2); local 403 text2.setVisibility(View.GONE); 580 TextView text2 = (TextView)view.findViewById(R.id.text2); local 584 text2.setVisibility(View.VISIBLE); 585 text2.setText(r.getString(R.string.online_count, getOnlineChildCount(cursor)));
|
/packages/apps/Music/src/com/android/music/ |
VerticalTextSpinner.java | 288 final String text2 = mText2; local 302 drawText(canvas, text2, TEXT2_Y 315 drawText(canvas, text2, TEXT2_Y
|
/frameworks/base/core/res/res/values/ |
ids.xml | 42 <item type="id" name="text2" />
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ |
SuggestionData.java | 120 public SuggestionData setText2(String text2) { 121 mText2 = text2;
|