HomeSort by relevance Sort by last modified time
    Searched refs:TextView (Results 701 - 725 of 864) sorted by null

<<21222324252627282930>>

  /packages/apps/Email/src/com/android/email/activity/
ActionBarController.java 36 import android.widget.TextView;
77 private final TextView mAccountSpinnerLine1View;
78 private final TextView mAccountSpinnerLine2View;
79 private final TextView mAccountSpinnerCountView;
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
TutorialJAJP.java 53 import android.widget.TextView;
93 TextView textView;
127 textView = (TextView) inflate.inflate(R.layout.bubble_text, null);
128 textView.setBackgroundDrawable(bubbleBackground);
129 textView.setText(text);
131 textView.setGravity(Gravity.CENTER_VERTICAL | Gravity.LEFT);
133 window.setContentView(textView);
139 private int chooseSize(PopupWindow pop, View parentView, CharSequence text, TextView tv)
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
PopupWindowTest.java 45 import android.widget.TextView;
143 TextView contentView = new TextView(mActivity);
250 View view = new TextView(mActivity);
547 mPopupWindow = new PopupWindow(new TextView(mActivity));
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupEditorFragment.java 73 import android.widget.TextView;
184 private TextView mGroupNameView;
404 mGroupNameView = (TextView) editorView.findViewById(R.id.group_name);
415 TextView accountTypeTextView = (TextView) editorView.findViewById(R.id.account_type);
416 TextView accountNameTextView = (TextView) editorView.findViewById(R.id.account_name);
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/list/
CustomContactListFilterActivity.java 67 import android.widget.TextView;
578 final TextView text1 = (TextView)convertView.findViewById(android.R.id.text1);
579 final TextView text2 = (TextView)convertView.findViewById(android.R.id.text2);
601 final TextView text1 = (TextView)convertView.findViewById(android.R.id.text1);
602 final TextView text2 = (TextView)convertView.findViewById(android.R.id.text2);
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
ConversationList.java 79 import android.widget.TextView;
107 private TextView mUnreadConvCount;
160 mUnreadConvCount = (TextView)v.findViewById(R.id.unread_conv_count);
553 TextView msg = (TextView)contents.findViewById(R.id.message);
732 private TextView mSelectedConvCount;
745 (TextView)mMultiSelectActionBarView.findViewById(R.id.selected_conv_count);
748 ((TextView)mMultiSelectActionBarView.findViewById(R.id.title))
759 mSelectedConvCount = (TextView)v.findViewById(R.id.selected_conv_count);
    [all...]
MessageListItem.java 62 import android.widget.TextView;
95 private TextView mBodyTextView;
97 private TextView mDownloadingLabel;
101 private TextView mDateView;
134 mBodyTextView = (TextView) findViewById(R.id.text_view);
135 mDateView = (TextView) findViewById(R.id.date_view);
363 mDownloadingLabel = (TextView) findViewById(R.id.label_downloading);
493 TextView tv = (TextView) v;
  /packages/apps/MusicFX/src/com/android/musicfx/
ActivityMusic.java 57 import android.widget.TextView;
427 ((TextView) findViewById(R.id.noEffectsTextView)).setVisibility(View.VISIBLE);
584 ((TextView) findViewById(R.id.vIStrengthText)).setEnabled(mIsHeadsetOn);
587 ((TextView) findViewById(R.id.bBStrengthText)).setEnabled(mIsHeadsetOn);
619 ((TextView) eqcontainer.findViewById(EQViewElementIds[band][0])).setText(
636 TextView tv = (TextView) findViewById(R.id.maxLevelText);
638 tv = (TextView) findViewById(R.id.centerLevelText);
640 tv = (TextView) findViewById(R.id.minLevelText);
  /frameworks/base/core/java/android/widget/
TextView.java 154 * Displays text to the user and optionally allows them to edit it. A TextView
162 * See {@link android.R.styleable#TextView TextView Attributes},
228 public class TextView extends View implements ViewTreeObserver.OnPreDrawListener {
229 static final String LOG_TAG = "TextView";
290 * This flag is set if the TextView tries to display an error before it
348 // Global listener that detects changes in the global position of the TextView
355 // Set when this TextView gained focus with some text selected. Will start selection mode.
433 boolean onEditorAction(TextView v, int actionId, KeyEvent event);
436 public TextView(Context context)
    [all...]
DateTimeView.java 31 import android.widget.TextView;
53 public class DateTimeView extends TextView {
  /packages/apps/Calendar/src/com/android/calendar/
EventInfoFragment.java 103 import android.widget.TextView;
275 private TextView mTitle;
276 private TextView mWhenDate;
277 private TextView mWhenTime;
278 private TextView mWhere;
612 mTitle = (TextView) mView.findViewById(R.id.title);
613 mWhenDate = (TextView) mView.findViewById(R.id.when_date);
614 mWhenTime = (TextView) mView.findViewById(R.id.when_time);
615 mWhere = (TextView) mView.findViewById(R.id.where);
    [all...]
  /cts/tests/src/android/app/cts/
InstrumentationTestActivity.java 31 import android.widget.TextView;
67 class MockTextView extends TextView {
  /development/samples/HoneycombGallery/src/com/example/android/hcgallery/
TitlesFragment.java 37 import android.widget.TextView;
116 final String title = (String) ((TextView) v).getText();
  /frameworks/base/core/java/com/android/internal/view/menu/
IconMenuItemView.java 30 import android.widget.TextView;
36 public final class IconMenuItemView extends TextView implements MenuView.ItemView {
190 * depends on this TextView's line bounds, which is only available
272 * the TextView's gravity).
  /packages/apps/Browser/src/com/android/browser/
NavScreen.java 37 import android.widget.TextView;
62 TextView mTitle;
SuggestionsAdapter.java 39 import android.widget.TextView;
177 TextView tv1 = (TextView) view.findViewById(android.R.id.text1);
178 TextView tv2 = (TextView) view.findViewById(android.R.id.text2);
  /packages/apps/Contacts/src/com/android/contacts/
PhoneCallDetailsHelper.java 34 import android.widget.TextView;
133 public void setCallDetailsHeader(TextView nameView, PhoneCallDetails details) {
  /packages/apps/Launcher2/src/com/android/launcher2/
BubbleTextView.java 31 import android.widget.TextView;
36 * TextView that draws a bubble behind the text. We cannot use a LineBackgroundSpan
37 * because we want to make the bubble taller than the text and TextView's clip is
40 public class BubbleTextView extends TextView {
  /packages/experimental/AndroidVendorSecurityTool/src/com/android/vending/sectool/v1/
GoogleSecurityToolActivity.java 16 import android.widget.TextView;
32 TextView mMessage;
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarDebugActivity.java 31 import android.widget.TextView;
50 private TextView mTextView;
  /development/apps/Development/src/com/android/development/
Connectivity.java 56 import android.widget.TextView;
87 private TextView mDCCycleCountView;
94 private TextView mSCCycleCountView;
209 mDCCycleCountView = (TextView)findViewById(R.id.dc_wifi_cycles_done);
218 mSCCycleCountView = (TextView)findViewById(R.id.sc_wifi_cycles_done);
  /frameworks/base/core/java/com/android/internal/widget/
ActionBarContextView.java 40 import android.widget.TextView;
54 private TextView mTitleView;
55 private TextView mSubtitleView;
180 mTitleView = (TextView) mTitleLayout.findViewById(R.id.action_bar_title);
181 mSubtitleView = (TextView) mTitleLayout.findViewById(R.id.action_bar_subtitle);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
RecentsPanelView.java 52 import android.widget.TextView;
103 TextView labelView;
104 TextView descriptionView;
140 holder.labelView = (TextView) convertView.findViewById(R.id.app_label);
141 holder.descriptionView = (TextView) convertView.findViewById(R.id.app_description);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
InputMethodsPanel.java 42 import android.widget.TextView;
231 final TextView itemTitle = (TextView)view.findViewById(R.id.item_title);
232 final TextView itemSubtitle = (TextView)view.findViewById(R.id.item_subtitle);
  /packages/apps/Contacts/src/com/android/contacts/detail/
ContactDetailFragment.java 113 import android.widget.TextView;
    [all...]

Completed in 1695 milliseconds

<<21222324252627282930>>