HomeSort by relevance Sort by last modified time
    Searched refs:TextView (Results 326 - 350 of 1057) sorted by null

<<11121314151617181920>>

  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
FragmentReceiveResultSupport.java 35 import android.widget.TextView;
61 private TextView mResults;
87 // Retrieve the TextView widget that will display results.
88 mResults = (TextView)v.findViewById(R.id.results);
91 mResults.setText(mResults.getText(), TextView.BufferType.EDITABLE);
  /frameworks/base/core/tests/coretests/src/android/view/
BitmapDrawable.java 31 import android.widget.TextView;
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListItemFocusableAboveUnfocusable.java 22 import android.widget.TextView;
  /frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/
StorageBrowser.java 31 import android.widget.TextView;
73 TextView view;
75 view = (TextView)mInflater.inflate(
78 view = (TextView)convertView;
  /development/samples/ApiDemos/src/com/example/android/apis/content/
ClipboardSample.java 34 import android.widget.TextView;
41 TextView mMimeTypes;
42 TextView mDataText;
65 TextView tv;
68 tv = (TextView)findViewById(R.id.styled_text);
72 tv = (TextView)findViewById(R.id.plain_text);
77 tv = (TextView)findViewById(R.id.html_text);
95 mMimeTypes = (TextView)findViewById(R.id.clip_mime_types);
96 mDataText = (TextView)findViewById(R.id.clip_text);
  /external/replicaisland/src/com/replica/replicaisland/
KeyboardConfigDialogPreference.java 30 import android.widget.TextView;
52 private TextView mLeftText;
53 private TextView mRightText;
54 private TextView mJumpText;
55 private TextView mAttackText;
101 mLeftText = (TextView)view.findViewById(R.id.key_left);
104 mRightText = (TextView)view.findViewById(R.id.key_right);
107 mJumpText = (TextView)view.findViewById(R.id.key_jump);
110 mAttackText = (TextView)view.findViewById(R.id.key_attack);
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupBrowseListAdapter.java 28 import android.widget.TextView;
213 public final TextView accountType;
214 public final TextView accountName;
215 public final TextView groupTitle;
216 public final TextView groupMemberCount;
223 accountType = (TextView) view.findViewById(R.id.account_type);
224 accountName = (TextView) view.findViewById(R.id.account_name);
225 groupTitle = (TextView) view.findViewById(R.id.label);
226 groupMemberCount = (TextView) view.findViewById(R.id.count);
  /packages/apps/Launcher2/src/com/android/launcher2/
PagedViewWidget.java 30 import android.widget.TextView;
107 final TextView name = (TextView) findViewById(R.id.widget_name);
109 final TextView dims = (TextView) findViewById(R.id.widget_dims);
122 final TextView name = (TextView) findViewById(R.id.widget_name);
124 final TextView dims = (TextView) findViewById(R.id.widget_dims);
  /sdk/apps/DeviceConfig/src/com/example/android/deviceconfig/
MyActivity.java 32 import android.widget.TextView;
62 TextView tv = (TextView) findViewById(R.id.keyboard_state_api);
89 tv = (TextView) findViewById(R.id.nav_state_api);
105 tv = (TextView) findViewById(R.id.size_api);
112 tv = (TextView) findViewById(R.id.xdpi);
116 tv = (TextView) findViewById(R.id.ydpi);
121 tv = (TextView) findViewById(R.id.scaled_density);
126 tv = (TextView) findViewById(R.id.font_scale);
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppTransferActivity.java 46 import android.widget.TextView;
81 private TextView mPercentView;
87 private TextView mLine1View, mLine2View, mLine3View, mLine5View;
248 mPercentView = (TextView)mView.findViewById(R.id.progress_percent);
267 mLine1View = (TextView)mView.findViewById(R.id.line1_view);
270 mLine2View = (TextView)mView.findViewById(R.id.line2_view);
273 mLine3View = (TextView)mView.findViewById(R.id.line3_view);
277 mLine5View = (TextView)mView.findViewById(R.id.line5_view);
286 mLine1View = (TextView)mView.findViewById(R.id.line1_view);
289 mLine2View = (TextView)mView.findViewById(R.id.line2_view)
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
UserDictionaryToolsList.java 45 import android.widget.TextView;
213 final TextView leftText = (TextView) findViewById(R.id.user_dictionary_tools_list_title_words_count);
403 CharSequence focusString = ((TextView)sFocusingView).getText();
404 CharSequence focusPairString = ((TextView)sFocusingPairView).getText();
434 TextView leftText = (TextView) findViewById(R.id.user_dictionary_tools_list_title_words_count);
464 TextView leftText = (TextView) findViewById(R.id.user_dictionary_tools_list_title_words_count);
482 mSelectedViewID = ((TextView)v).getId()
    [all...]
  /development/apps/Development/src/com/android/development/
PermissionDetails.java 50 import android.widget.TextView;
89 TextView pkgName;
129 holder.pkgName = (TextView) convertView.findViewById(R.id.pkg_name);
132 // Get the ViewHolder back to get fast access to the TextView
219 TextView label = (TextView) sharedPanel.findViewById(R.id.shared_pkgs_label);
220 TextView sharedView = (TextView) sharedPanel.findViewById(R.id.shared_pkgs);
256 TextView view = (TextView)findViewById(viewId)
    [all...]
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/activities/
SensorActivity.java 35 import android.widget.TextView;
60 private TextView mTextError;
61 private TextView mTextStatus;
62 private TextView mTextTargetHz;
63 private TextView mTextActualHz;
78 mTextError = (TextView) findViewById(R.id.textError);
79 mTextStatus = (TextView) findViewById(R.id.textStatus);
80 mTextTargetHz = (TextView) findViewById(R.id.textSampleRate);
81 mTextActualHz = (TextView) findViewById(R.id.textActualRate);
208 private TextView mVal
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
CursorTreeAdapterTest.java 32 import android.widget.TextView;
419 TextView retView;
420 TextView textView = new TextView(mContext);
421 textView.setText(expectedStr);
427 adapter.getGroupView(0, true, textView, mParent);
436 adapter.getGroupView(10, true, textView, mParent);
442 retView = (TextView) adapter.getGroupView(1, true, null, mParent);
447 retView = (TextView) adapter.getGroupView(0, true, textView, mParent)
    [all...]
HorizontalScrollViewTest.java 39 import android.widget.TextView;
87 TextView child0 = new TextView(mActivity);
92 TextView child1 = new TextView(mActivity);
104 TextView child0 = new TextView(mActivity);
109 TextView child1 = new TextView(mActivity);
124 child1 = new TextView(mActivity)
    [all...]
ScrollViewTest.java 39 import android.widget.TextView;
106 TextView child0 = new TextView(mActivity);
111 TextView child1 = new TextView(mActivity);
123 TextView child0 = new TextView(mActivity);
128 TextView child1 = new TextView(mActivity);
143 child1 = new TextView(mActivity)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
FinishAffinity.java 28 import android.widget.TextView;
40 ((TextView)findViewById(R.id.seq)).setText("Current nesting: " + mNesting);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
List3.java 25 import android.widget.TextView;
68 ((TextView) view).setText(text);
  /development/samples/Support13Demos/src/com/example/android/supportv13/app/
CountingFragment.java 25 import android.widget.TextView;
63 ((TextView)tv).setText("Fragment #" + mNum);
  /development/samples/training/AnimationsDemo/src/com/example/android/animationsdemo/
ScreenSlidePageFragment.java 24 import android.widget.TextView;
72 ((TextView) rootView.findViewById(android.R.id.text1)).setText(
  /development/samples/training/device-management-policy/src/com/example/training/deviceadmin/
PolicySetupActivity.java 31 import android.widget.TextView;
162 TextView passwordQualityView = (TextView) findViewById(R.id.policy_password_quality);
163 TextView passwordLengthView = (TextView) findViewById(R.id.policy_password_length);
175 ((TextView) findViewById(R.id.policy_password_uppercase)).setText(
250 TextView setupMessage = (TextView) findViewById(R.id.setup_message);
  /frameworks/base/core/java/com/android/internal/widget/
DialogTitle.java 24 import android.widget.TextView;
30 public class DialogTitle extends TextView {
  /frameworks/base/core/tests/coretests/src/android/widget/scroll/
RequestRectangleVisibleWithInternalScrollTest.java 27 import android.widget.TextView;
30 * This is suppressed because {@link TextView#scrollBy} isn't working.
36 private TextView mTextBlob;
  /frameworks/base/core/tests/coretests/src/android/widget/scroll/arrowscroll/
MultiPageTextWithPaddingTest.java 24 import android.widget.TextView;
32 private TextView mTextView;
  /frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
EffectsTest.java 30 import android.widget.TextView;
181 TextView tv = new TextView(mContext);
185 tv = new TextView(mContext);
189 tv = new TextView(mContext);
193 tv = new TextView(mContext);
197 tv = new TextView(mContext);
201 tv = new TextView(mContext);

Completed in 811 milliseconds

<<11121314151617181920>>