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

1 23 4 5 6 7 8 91011>>

  /packages/apps/Tag/src/com/android/apps/tag/record/
UnknownRecord.java 25 import android.widget.TextView;
31 TextView text = (TextView) inflater.inflate(R.layout.tag_text, parent, false);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
TextViewCompatUtils.java 20 import android.widget.TextView;
25 // Note that TextView.setCompoundDrawablesRelativeWithIntrinsicBounds(Drawable,Drawable,
28 CompatUtils.getMethod(TextView.class, "setCompoundDrawablesRelativeWithIntrinsicBounds",
35 public static void setCompoundDrawablesRelativeWithIntrinsicBounds(final TextView textView,
38 textView.setCompoundDrawablesWithIntrinsicBounds(start, top, end, bottom);
41 CompatUtils.invoke(textView, null, METHOD_setCompoundDrawablesRelativeWithIntrinsicBounds,
  /sdk/testapps/legacyTest/src/com/android/tests/javaprojecttest/app/
Main.java 5 import android.widget.TextView;
16 TextView tv = (TextView) findViewById(R.id.basicJar);
  /sdk/testapps/testProjectTest/testapp/src/com/android/tests/testprojecttest/lib/
LibActivityTest.java 21 import android.widget.TextView;
44 private TextView mTextView;
59 mTextView = (TextView) a.findViewById(R.id.text);
  /sdk/testapps/testProjectTest/testlib/src/com/android/tests/testprojecttest/lib/
LibActivityTest.java 21 import android.widget.TextView;
44 private TextView mTextView;
59 mTextView = (TextView) a.findViewById(R.id.text);
  /frameworks/base/core/tests/coretests/src/android/view/
CreateViewTest.java 27 import android.widget.TextView;
76 TextView text = new TextView(mContext);
82 TextView text = new TextView(mContext);
93 TextView one = new TextView(mContext);
97 TextView two = new TextView(mContext);
101 TextView three = new TextView(mContext)
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/util/
PhoneNumberFormatter.java 22 import android.widget.TextView;
30 * Load {@link TextWatcherLoadAsyncTask} in a worker thread and set it to a {@link TextView}.
35 private final TextView mTextView;
37 public TextWatcherLoadAsyncTask(String countryCode, TextView textView) {
39 mTextView = textView;
66 * Delay-set {@link PhoneNumberFormattingTextWatcher} to a {@link TextView}.
69 TextView textView) {
70 new TextWatcherLoadAsyncTask(GeoUtil.getCurrentCountryIso(context), textView)
    [all...]
  /packages/apps/Mms/src/com/android/mms/util/
PhoneNumberFormatter.java 22 import android.widget.TextView;
30 * Load {@link TextWatcherLoadAsyncTask} in a worker thread and set it to a {@link TextView}.
35 private final TextView mTextView;
37 public TextWatcherLoadAsyncTask(String countryCode, TextView textView) {
39 mTextView = textView;
66 * Delay-set {@link PhoneNumberFormattingTextWatcher} to a {@link TextView}.
69 TextView textView) {
70 new TextWatcherLoadAsyncTask(MmsApp.getApplication().getCurrentCountryIso(), textView)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/layout/linear/
FillInWrap.java 23 import android.widget.TextView;
30 ((TextView) findViewById(R.id.data)).setText("1\n2\n3\n4\n5");
  /frameworks/base/core/tests/coretests/src/android/widget/scroll/
ButtonsWithTallTextViewInBetween.java 23 import android.widget.TextView;
35 public TextView getMiddleFiller() {
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
EmptyConversationListView.java 6 import android.widget.TextView;
8 public class EmptyConversationListView extends TextView {
  /frameworks/base/core/java/android/widget/
TwoLineListItem.java 29 * {@link android.widget.TextView TextViews} elements (or subclasses) with the ID values
48 private TextView mText1;
49 private TextView mText2;
72 mText1 = (TextView) findViewById(com.android.internal.R.id.text1);
73 mText2 = (TextView) findViewById(com.android.internal.R.id.text2);
80 public TextView getText1() {
88 public TextView getText2() {
  /frameworks/base/core/java/android/text/method/
BaseMovementMethod.java 24 import android.widget.TextView;
36 public void initialize(TextView widget, Spannable text) {
40 public boolean onKeyDown(TextView widget, Spannable text, int keyCode, KeyEvent event) {
51 public boolean onKeyOther(TextView widget, Spannable text, KeyEvent event) {
74 public boolean onKeyUp(TextView widget, Spannable text, int keyCode, KeyEvent event) {
79 public void onTakeFocus(TextView widget, Spannable text, int direction) {
83 public boolean onTouchEvent(TextView widget, Spannable text, MotionEvent event) {
88 public boolean onTrackballEvent(TextView widget, Spannable text, MotionEvent event) {
93 public boolean onGenericMotionEvent(TextView widget, Spannable text, MotionEvent event) {
147 * {@link #onKeyDown(TextView, Spannable, int, KeyEvent)} calls this method onc
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
TextSwitcherTest.java 25 import android.widget.TextView;
61 TextView tv1 = new TextView(mContext);
62 TextView tv2 = new TextView(mContext);
68 TextView tvChild1 = (TextView) textSwitcher.getChildAt(0);
69 TextView tvChild2 = (TextView) textSwitcher.getChildAt(1);
101 TextView tv1 = new TextView(mContext)
    [all...]
ViewFlipperTest.java 29 import android.widget.TextView;
80 TextView iv1 = (TextView) mActivity.findViewById(R.id.viewflipper_textview1);
81 TextView iv2 = (TextView) mActivity.findViewById(R.id.viewflipper_textview2);
102 TextView iv1 = (TextView) mActivity.findViewById(R.id.viewflipper_textview1);
103 TextView iv2 = (TextView) mActivity.findViewById(R.id.viewflipper_textview2);
118 TextView iv1 = (TextView) mActivity.findViewById(R.id.viewflipper_textview1)
    [all...]
  /developers/build/prebuilts/gradle/SlidingTabsColors/SlidingTabsColorsSample/src/main/java/com/example/android/slidingtabscolors/
ContentFragment.java 24 import android.widget.TextView;
66 TextView title = (TextView) view.findViewById(R.id.item_title);
70 TextView indicatorColorView = (TextView) view.findViewById(R.id.item_indicator_color);
75 TextView dividerColorView = (TextView) view.findViewById(R.id.item_divider_color);
  /developers/samples/android/ui/views/SlidingTabs/SlidingTabsColors/SlidingTabsColorsSample/src/main/java/com/example/android/slidingtabscolors/
ContentFragment.java 24 import android.widget.TextView;
66 TextView title = (TextView) view.findViewById(R.id.item_title);
70 TextView indicatorColorView = (TextView) view.findViewById(R.id.item_indicator_color);
75 TextView dividerColorView = (TextView) view.findViewById(R.id.item_divider_color);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
SearchQueryResults.java 26 import android.widget.TextView;
31 TextView mQueryText;
32 TextView mAppDataText;
33 TextView mDeliveredByText;
48 mQueryText = (TextView) findViewById(R.id.txt_query);
49 mAppDataText = (TextView) findViewById(R.id.txt_appdata);
50 mDeliveredByText = (TextView) findViewById(R.id.txt_deliveredby);
  /packages/apps/Calendar/src/com/android/calendar/
EmailAddressAdapter.java 27 import android.widget.TextView;
56 TextView text1 = (TextView)view.findViewById(R.id.text1);
57 TextView text2 = (TextView)view.findViewById(R.id.text2);
64 TextView text1 = (TextView)view.findViewById(R.id.text1);
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastListItem.java 29 import android.widget.TextView;
38 private TextView mChannelView;
39 private TextView mMessageView;
40 private TextView mDateView;
54 mChannelView = (TextView) findViewById(R.id.channel);
55 mDateView = (TextView) findViewById(R.id.date);
56 mMessageView = (TextView) findViewById(R.id.message);
  /packages/apps/Settings/src/com/android/settings/applications/
AppViewHolder.java 11 import android.widget.TextView;
17 public TextView appName;
19 public TextView appSize;
20 public TextView disabled;
31 holder.appName = (TextView) convertView.findViewById(R.id.app_name);
33 holder.appSize = (TextView) convertView.findViewById(R.id.app_size);
34 holder.disabled = (TextView) convertView.findViewById(R.id.app_disabled);
39 // Get the ViewHolder back to get fast access to the TextView
  /development/samples/ApiDemos/src/com/example/android/apis/view/
GridLayout3.java 65 TextView c = new TextView(context);
71 TextView c = new TextView(context);
77 TextView c = new TextView(context);
88 TextView c = new TextView(context);
93 TextView c = new EditText(context);
  /development/samples/Support4Demos/src/com/example/android/supportv4/widget/
ContentLoadingProgressBarActivity.java 23 import android.widget.TextView;
49 private TextView mShowText;
50 private TextView mShowTextDone;
51 private TextView mHideText;
52 private TextView mHideTextDone;
67 mShowText = (TextView)findViewById(R.id.show_text);
68 mShowTextDone = (TextView)findViewById(R.id.show_text_done);
69 mHideText = (TextView)findViewById(R.id.hide_text);
70 mHideTextDone = (TextView)findViewById(R.id.hide_text_done);
  /external/droiddriver/samples/testapp/src/com/google/android/apps/common/testing/ui/testapp/
MenuActivity.java 14 import android.widget.TextView;
38 TextView text = (TextView) findViewById(R.id.textMenuResult);
52 TextView text = (TextView) findViewById(R.id.textMenuResult);
59 TextView text = (TextView) findViewById(R.id.textMenuResult);
77 TextView text = (TextView) findViewById(R.id.textMenuResult);
  /developers/build/prebuilts/gradle/BasicMediaRouter/BasicMediaRouterSample/src/main/java/com/example/android/basicmediarouter/
SamplePresentation.java 24 import android.widget.TextView;
40 private TextView mText;
55 mText = (TextView) findViewById(R.id.display_text);
60 TextView smallText = (TextView) findViewById(R.id.display_smalltext);

Completed in 4027 milliseconds

1 23 4 5 6 7 8 91011>>