HomeSort by relevance Sort by last modified time
    Searched refs:TextView (Results 526 - 550 of 1355) sorted by null

<<21222324252627282930>>

  /packages/apps/Browser/src/com/android/browser/
GeolocationPermissionsPrompt.java 28 import android.widget.TextView;
32 private TextView mMessage;
54 mMessage = (TextView) findViewById(R.id.message);
NavTabView.java 28 import android.widget.TextView;
35 private TextView mTitle;
60 mTitle = (TextView) findViewById(R.id.title);
  /packages/apps/Browser/src/com/android/browser/addbookmark/
FolderSpinnerAdapter.java 28 import android.widget.TextView;
90 TextView textView = (TextView) view;
92 textView.setText(mRecentFolderName);
95 textView.setText(mOtherFolderDisplayText);
97 textView.setText(labelResource);
99 textView.setGravity(Gravity.CENTER_VERTICAL);
101 textView.setCompoundDrawablesWithIntrinsicBounds(drawable, null,
  /packages/apps/Calendar/src/com/android/calendar/
ExpandableTextView.java 26 import android.widget.TextView;
30 TextView mTv;
105 mTv = (TextView) findViewById(R.id.expandable_text);
  /packages/apps/Camera/src/com/android/camera/ui/
CountDownView.java 32 import android.widget.TextView;
40 private TextView mRemainingSecondsView;
98 mRemainingSecondsView = (TextView) findViewById(R.id.remaining_seconds);
  /packages/apps/Camera2/src/com/android/camera/ui/
CountDownView.java 32 import android.widget.TextView;
40 private TextView mRemainingSecondsView;
98 mRemainingSecondsView = (TextView) findViewById(R.id.remaining_seconds);
  /packages/apps/DeskClock/src/com/android/deskclock/
SnoozeLengthDialog.java 11 import android.widget.TextView;
18 private TextView mNumberPickerMinutesView;
42 mNumberPickerMinutesView = (TextView) view.findViewById(R.id.title);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
EditorVignette.java 29 import android.widget.TextView;
51 private TextView mVignetteValue;
52 private TextView mExposureValue;
53 private TextView mSaturationValue;
54 private TextView mContrastValue;
55 private TextView mFalloffValue;
115 TextView []label = {
213 mVignetteValue = (TextView) controls.findViewById(R.id.mainVignetteValue);
217 mExposureValue = (TextView) controls.findViewById(R.id.exposureValue);
221 mSaturationValue = (TextView) controls.findViewById(R.id.saturationValue)
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
SlideshowAttachmentView.java 33 import android.widget.TextView;
45 private TextView mTextView;
58 mTextView = (TextView) findViewById(R.id.slideshow_text);
  /packages/apps/Mms/tests/src/com/android/mms/
InterceptSendSms.java 39 import android.widget.TextView;
55 private TextView mRecipientsView;
67 mRecipientsView = (TextView)activity.findViewById(R.id.recipients_editor);
  /packages/apps/Settings/src/com/android/settings/
RegulatoryInfoDisplayActivity.java 30 import android.widget.TextView;
88 TextView messageText = (TextView) dialog.findViewById(android.R.id.message);
  /packages/apps/Settings/src/com/android/settings/accessibility/
ColorPreference.java 27 import android.widget.TextView;
133 final TextView summary = (TextView) view.findViewById(R.id.summary);
  /packages/apps/Settings/src/com/android/settings/accounts/
SyncStateCheckBoxPreference.java 26 import android.widget.TextView;
82 TextView summary = (TextView) view.findViewById(android.R.id.summary);
  /packages/apps/Stk/src/com/android/stk/
ToneDialog.java 28 import android.widget.TextView;
77 TextView tv = (TextView) findViewById(R.id.message);
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ShortcutNameActivity.java 31 import android.widget.TextView;
41 TextView.OnEditorActionListener {
87 public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
TextCandidatesViewManager.java 54 import android.widget.TextView;
101 private TextView mViewTabSymbol;
103 private TextView mViewTabEmoticon;
185 private TextView mViewCandidateTemplate;
191 private TextView mFullViewPrevView;
201 /** List of textView for CandiData List 1st for Symbol mode */
202 private ArrayList<TextView> mTextViewArray1st = new ArrayList<TextView>();
203 /** List of textView for CandiData List 2st for Symbol mode */
204 private ArrayList<TextView> mTextViewArray2nd = new ArrayList<TextView>()
    [all...]
  /cts/tests/tests/holo/src/android/holo/cts/
ThemeAdapter.java 23 import android.widget.TextView;
185 TextView textView;
187 textView = (TextView) convertView;
189 textView = (TextView) mInflater.inflate(android.R.layout.simple_list_item_1,
193 textView.setText(themeInfo.mName);
194 return textView;
  /development/samples/UiAutomator/src/com/android/test/uiautomator/demos/
LaunchSettings.java 87 new UiSelector().className(android.widget.TextView.class.getName()), "Settings");
  /external/replicaisland/src/com/replica/replicaisland/
GameOverActivity.java 30 import android.widget.TextView;
41 private TextView mEndingView;
43 public static class IncrementingTextView extends TextView {
138 mEndingView = (TextView)findViewById(R.id.ending);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowArrayAdapter.java 8 import android.widget.TextView;
140 TextView text;
142 text = (TextView) view;
144 text = (TextView) view.findViewById(textViewResourceId);
  /frameworks/base/core/java/android/text/style/
EasyEditSpan.java 23 import android.widget.TextView;
28 * The {@link TextView} uses this span to allow the user to delete a chuck of text in one click.
30 * {@link TextView} removes the span when the user deletes the whole text or modifies it.
104 * @return True if the {@link TextView} should offer the ability to delete the text.
  /frameworks/base/core/java/android/widget/
Button.java 92 * {@link android.R.styleable#TextView TextView Attributes},
97 public class Button extends TextView {
  /frameworks/base/core/java/com/android/internal/widget/
EditableInputConnection.java 30 import android.widget.TextView;
36 private final TextView mTextView;
39 // balanced impact on its associated TextView.
43 public EditableInputConnection(TextView textview) {
44 super(textview, true);
45 mTextView = textview;
50 TextView tv = mTextView;
124 * Calls the {@link TextView#onCommitCorrection} method of the associated TextView
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListInHorizontal.java 24 import android.widget.TextView;
ListInVertical.java 24 import android.widget.TextView;

Completed in 2043 milliseconds

<<21222324252627282930>>