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

1 2 34 5 6 7 8 91011>>

  /frameworks/base/core/tests/coretests/src/android/widget/gridview/
GridInVertical.java 24 import android.widget.TextView;
33 TextView mText;
48 mText = (TextView) findViewById(R.id.text);
  /frameworks/base/tests/BiDiTests/src/com/android/bidi/
BiDiTestTextViewDrawablesLtr.java 24 import android.widget.TextView;
29 private TextView textViewError;
42 textViewError = (TextView) currentView.findViewById(R.id.textview_error);
BiDiTestTextViewDrawablesRtl.java 24 import android.widget.TextView;
29 private TextView textViewError;
42 textViewError = (TextView) currentView.findViewById(R.id.textview_error);
  /packages/apps/Phone/src/com/android/phone/
MultiLineTitleEditTextPreference.java 23 import android.widget.TextView;
37 * handle to the "title" TextView.
60 // The "title" TextView inside an EditTextPreference defaults to
62 // We override onBindView() purely to look up that TextView and call
68 TextView textView = (TextView) view.findViewById(com.android.internal.R.id.title);
69 if (textView != null) {
70 textView.setSingleLine(false);
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiConfigInfo.java 22 import android.widget.TextView;
36 private TextView mConfigList;
49 mConfigList = (TextView) findViewById(R.id.config_list);
WifiStatusTest.java 42 import android.widget.TextView;
55 private TextView mWifiState;
56 private TextView mNetworkState;
57 private TextView mSupplicantState;
58 private TextView mRSSI;
59 private TextView mBSSID;
60 private TextView mSSID;
61 private TextView mHiddenSSID;
62 private TextView mIPAddr;
63 private TextView mMACAddr
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
List13.java 28 import android.widget.TextView;
43 private TextView mStatus;
96 TextView text;
99 text = (TextView)mInflater.inflate(android.R.layout.simple_list_item_1, parent, false);
101 text = (TextView)convertView;
122 mStatus = (TextView) findViewById(R.id.status);
146 TextView t = (TextView)view.getChildAt(i);
List5.java 28 import android.widget.TextView;
71 TextView tv;
73 tv = (TextView) LayoutInflater.from(mContext).inflate(
76 tv = (TextView) convertView;
List4.java 28 import android.widget.TextView;
126 mTitle = new TextView(context);
131 mDialogue = new TextView(context);
151 private TextView mTitle;
152 private TextView mDialogue;
TableLayout7.java 28 import android.widget.TextView;
66 TextView label = new TextView(this);
70 TextView shortcut = new TextView(this);
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
MockView.java 23 import android.widget.TextView;
31 public class MockView extends TextView {
  /packages/apps/Camera/src/com/android/camera/ui/
InLineSettingRestore.java 24 import android.widget.TextView;
35 ((TextView) findViewById(R.id.title)).setText(
  /packages/apps/Contacts/tests/src/com/android/contacts/format/
SpannedTestUtils.java 22 import android.widget.TextView;
34 * @param textView the text view from which to get the text
36 public static void checkHtmlText(String expectedHtmlText, TextView textView) {
37 String actualHtmlText = Html.toHtml((Spanned) textView.getText());
  /sdk/testapps/basicProjectWithJava/src/com/android/tests/basicProjectWithJava/
MyTextView.java 7 import android.widget.TextView;
9 public class MyTextView extends TextView {
  /frameworks/base/policy/src/com/android/internal/policy/impl/
SimPukUnlockScreen.java 37 import android.widget.TextView;
52 private TextView mHeaderText;
53 private TextView mPukText;
54 private TextView mPinText;
55 private TextView mFocusedEntry;
92 mHeaderText = (TextView) findViewById(R.id.headerText);
94 mPukText = (TextView) findViewById(R.id.pukDisplay);
95 mPinText = (TextView) findViewById(R.id.pinDisplay);
208 mFocusedEntry = (TextView)v;
334 private TextView mZero
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
ReceiveResult.java 30 import android.widget.TextView;
87 // Retrieve the TextView widget that will display results.
88 mResults = (TextView)findViewById(R.id.results);
91 mResults.setText(mResults.getText(), TextView.BufferType.EDITABLE);
151 private TextView mResults;
  /frameworks/base/core/java/android/text/method/
TransformationMethod.java 21 import android.widget.TextView;
24 * TextView uses TransformationMethods to do things like replacing the
40 * This method is called when the TextView that uses this
  /frameworks/base/core/java/android/text/style/
EasyEditSpan.java 22 import android.widget.TextView;
27 * The {@link TextView} uses this span to allow the user to delete a chuck of text in one click.
28 * the text. {@link TextView} removes this span as soon as the text is edited, or the cursor moves.
  /frameworks/base/core/tests/coretests/src/android/widget/
TextViewTest.java 27 * TextViewTest tests {@link TextView}.
37 TextView tv = new TextView(getActivity());
67 TextView tv = new TextView(getActivity());
73 TextView tv = new TextView(getActivity());
93 TextView tv = new TextView(getActivity());
117 TextView tv = new TextView(getActivity())
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListTakeFocusFromSide.java 28 import android.widget.TextView;
64 TextView view;
67 view = (TextView) mInflater.inflate(android.R.layout.simple_list_item_1, null);
69 view = (TextView) convertView;
  /frameworks/base/core/tests/coretests/src/android/widget/scroll/
RequestRectangleVisibleWithInternalScroll.java 24 import android.widget.TextView;
33 private TextView mTextBlob;
42 public TextView getTextBlob() {
56 mTextBlob = (TextView) findViewById(R.id.blob);
  /packages/apps/Settings/src/com/android/settings/quicklaunch/
ShortcutPreference.java 26 import android.widget.TextView;
106 TextView shortcutView = (TextView) view.findViewById(R.id.shortcut);
111 TextView titleView = (TextView) view.findViewById(android.R.id.title);
125 TextView summaryView = (TextView) view.findViewById(android.R.id.summary);
  /cts/tests/tests/view/src/android/view/cts/
View_IdsTest.java 32 import android.widget.TextView;
59 TextView symbol = (TextView) activity.findViewById(R.id.symbolball);
60 TextView warning = (TextView) activity.findViewById(R.id.warning);
  /development/samples/BusinessCard/src/com/example/android/businesscard/
BusinessCardActivity.java 27 import android.widget.TextView;
119 TextView displayNameView = (TextView) findViewById(R.id.display_name_text_view);
122 TextView phoneNumberView = (TextView) findViewById(R.id.phone_number_text_view);
  /device/google/accessory/demokit/app/src/com/google/android/DemoKit/
DemoKitPhone.java 8 import android.widget.TextView;
13 TextView mInputLabel;
14 TextView mOutputLabel;
40 mInputLabel = (TextView) findViewById(R.id.inputLabel);
41 mOutputLabel = (TextView) findViewById(R.id.outputLabel);

Completed in 1150 milliseconds

1 2 34 5 6 7 8 91011>>