Searched refs:text2 (Results 1 - 25 of 25) sorted by relevance

/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
H A DDefaultSoftKeyboard.java558 TextView text2 = (TextView)mSubView.findViewById(R.id.alt);
563 text2.setTextColor(res.getColor(R.color.indicator_textcolor_alt_off));
565 text2.setBackgroundColor(res.getColor(R.color.indicator_textbackground_default));
569 text2.setTextColor(res.getColor(R.color.indicator_textcolor_alt_off));
571 text2.setBackgroundColor(res.getColor(R.color.indicator_textbackground_default));
575 text2.setTextColor(res.getColor(R.color.indicator_textcolor_alt_off));
577 text2.setBackgroundColor(res.getColor(R.color.indicator_textbackground_default));
581 text2.setTextColor(res.getColor(R.color.indicator_textcolor_alt_on));
583 text2.setBackgroundColor(res.getColor(R.color.indicator_textbackground_default));
587 text2
[all...]
/packages/apps/Calendar/src/com/android/calendar/
H A DEmailAddressAdapter.java57 TextView text2 = (TextView)view.findViewById(R.id.text2);
59 text2.setText(emailAddress);
/packages/apps/Email/src/com/android/email/
H A DEmailAddressAdapter.java58 TextView text2 = (TextView)view.findViewById(R.id.text2);
60 text2.setText(emailAddress);
/packages/apps/Contacts/src/com/android/contacts/util/
H A DAccountsListAdapter.java90 final TextView text2 = (TextView) resultView.findViewById(android.R.id.text2);
100 text2.setText(account.name);
101 text2.setEllipsize(TruncateAt.MIDDLE);
H A DAccountSelectionUtil.java118 final TextView text2 =
119 (TextView)convertView.findViewById(android.R.id.text2);
127 text2.setText(accountType.getDisplayLabel(context));
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
H A DDefaultSuggestionView.java71 mText2 = (TextView) findViewById(R.id.text2);
91 CharSequence text2 = suggestion.getSuggestionText2Url();
92 if (text2 != null) {
93 text2 = formatUrl(text2);
95 text2 = formatText(suggestion.getSuggestionText2(), suggestion);
98 if (TextUtils.isEmpty(text2)) {
108 setText2(text2);
113 Log.d(TAG, "bindAsSuggestion(), text1=" + text1 + ",text2=" + text2
[all...]
H A DBaseSuggestionView.java58 mText2 = (TextView) findViewById(R.id.text2);
/packages/apps/Contacts/tests/src/com/android/contacts/tests/allintents/
H A DSelectAccountDialogFragment.java62 final TextView text2 = (TextView)resultView.findViewById(android.R.id.text2);
67 text2.setText("Type: " + account.type);
/packages/apps/Contacts/src/com/android/contacts/quickcontact/
H A DQuickContactListFragment.java107 final TextView text2 = (TextView) resultView.findViewById(
108 android.R.id.text2);
137 if (text2 != null) {
139 text2.setText(subtitle);
141 text2.setVisibility(View.GONE);
143 text2.setVisibility(View.VISIBLE);
/packages/apps/Browser/tests/src/com/android/browser/
H A DBrowserProviderTests.java126 String text2 = getCol(c, SearchManager.SUGGEST_COLUMN_TEXT_2);
127 assertNotNull(text2);
/packages/apps/Contacts/src/com/android/contacts/group/
H A DSuggestedMemberListAdapter.java136 TextView text2 = (TextView) result.findViewById(R.id.text2);
140 text2.setText(member.getExtraInfo());
142 text2.setVisibility(View.GONE);
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DGlobalSearchSupport.java113 String text2; field in class:GlobalSearchSupport.SearchSuggestion
135 list.add(text2);
156 list.add(text2);
345 suggestion.text2 = shortenSnippet(c.getString(6));
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
H A DShortcutsProvider.java161 String text2 = shortcut.getAsString(SearchManager.SUGGEST_COLUMN_TEXT_2);
178 suggestion.setText2(text2);
H A DSuggestionData.java143 public SuggestionData setText2(String text2) { argument
144 mText2 = text2;
/packages/apps/Contacts/src/com/android/contacts/list/
H A DCustomContactListFilterActivity.java579 final TextView text2 = (TextView)convertView.findViewById(android.R.id.text2);
588 text2.setText(accountType.getDisplayLabel(mContext));
602 final TextView text2 = (TextView)convertView.findViewById(android.R.id.text2);
615 text2.setVisibility(View.GONE);
620 text2.setVisibility(View.GONE);
/packages/apps/Music/src/com/android/music/
H A DVerticalTextSpinner.java288 final String text2 = mText2;
302 drawText(canvas, text2, TEXT2_Y
315 drawText(canvas, text2, TEXT2_Y
/packages/apps/Phone/src/com/android/phone/
H A DADNList.java56 android.R.id.text2
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
H A DCalendarDebug.java162 new int[]{android.R.id.text1, android.R.id.text2});
/packages/apps/Browser/src/com/android/browser/
H A DErrorConsoleView.java306 TextView subText = (TextView) view.findViewById(android.R.id.text2);
H A DSuggestionsAdapter.java178 TextView tv2 = (TextView) view.findViewById(android.R.id.text2);
528 String text2 = mCursor.getString(
/packages/apps/Settings/src/com/android/settings/
H A DZonePicker.java95 final int[] to = new int[] {android.R.id.text1, android.R.id.text2};
/packages/apps/Contacts/src/com/android/contacts/interactions/
H A DPhoneNumberInteraction.java154 super(context, R.layout.phone_disambig_item, android.R.id.text2, list);
/packages/apps/Contacts/src/com/android/contacts/detail/
H A DContactDetailFragment.java2164 final TextView text2 = (TextView)resultView.findViewById(android.R.id.text2);
2173 text2.setVisibility(View.GONE);
2176 text2.setVisibility(View.VISIBLE);
2177 text2.setText(label);
/packages/experimental/LoaderApp/src/com/android/loaderapp/fragments/
H A DContactFragment.java681 views.data = (TextView) v.findViewById(android.R.id.text2);
/packages/apps/Email/tests/src/com/android/email/provider/
H A DProviderTests.java451 String text2 = message2.mText;
468 assertEquals("body text", text2, body2.mTextContent);

Completed in 1255 milliseconds