HomeSort by relevance Sort by last modified time
    Searched defs:TextView (Results 1 - 25 of 39) sorted by null

1 2

  /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;
FragmentReceiveResult.java 33 import android.widget.TextView;
59 private TextView mResults;
85 // Retrieve the TextView widget that will display results.
86 mResults = (TextView)v.findViewById(R.id.results);
89 mResults.setText(mResults.getText(), TextView.BufferType.EDITABLE);
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
GuidedActionEditText.java 26 import android.widget.TextView;
101 info.setClassName(isFocused() ? EditText.class.getName() : TextView.class.getName());
112 // Make the TextView focusable during editing, avoid the TextView gets accessibility focus
  /packages/apps/DocumentsUI/src/com/android/documentsui/dirlist/
GridDirectoryHolder.java 26 import android.widget.TextView;
36 final TextView mTitle;
44 mTitle = (TextView) itemView.findViewById(android.R.id.title);
83 TextView.BufferType.SPANNABLE);
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
HierarchicalFolderSelectorAdapter.java 29 import android.widget.TextView;
60 final TextView display = (TextView) view.findViewById(R.id.folder_name);
65 : truncateHierarchy(row.mPathName), TextView.BufferType.SPANNABLE);
67 display.setText(displayText, TextView.BufferType.SPANNABLE);
  /frameworks/base/apct-tests/perftests/core/src/android/widget/
EditTextLongTextPerfTest.java 98 editText.setText(sb.toString(), TextView.BufferType.EDITABLE);
  /frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/app/
FragmentReceiveResultSupport.java 33 import android.widget.TextView;
62 private TextView mResults;
109 // Retrieve the TextView widget that will display results.
110 mResults = (TextView)v.findViewById(R.id.results);
113 mResults.setText(mResults.getText(), TextView.BufferType.EDITABLE);
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/bytecode/
AndroidTranslatorTest.java 9 import android.widget.TextView;
133 TextView.getTextColors(null, null);
138 TextView.getTextColors(null, null);
143 assertThat(e.getMessage(), equalTo("expected to perform direct call on <class android.view.View> but got <class android.widget.TextView>"));
  /frameworks/base/tests/SoundTriggerTestApp/src/com/android/test/soundtrigger/
SoundTriggerTestActivity.java 49 import android.widget.TextView;
67 private TextView mDebugView = null;
88 mDebugView.setText(mDebugView.getText(), TextView.BufferType.EDITABLE);
  /packages/apps/Settings/src/com/android/settings/bluetooth/
DeviceProfilesSettings.java 36 import android.widget.TextView;
68 private TextView mProfileLabel;
103 mProfileLabel = (TextView) mRootView.findViewById(R.id.profiles_label);
105 deviceName.setText(mCachedDevice.getName(), TextView.BufferType.EDITABLE);
  /cts/tests/tests/transition/src/android/transition/cts/
TransitionTest.java 55 import android.widget.TextView;
145 mTransition.addTarget(TextView.class);
149 assertTrue(mTargets.get(0) instanceof TextView);
156 mTransition.addTarget(TextView.class);
165 assertTrue(mTargets.get(0) instanceof TextView);
378 mTransition.excludeTarget(TextView.class, true);
384 mTransition.excludeTarget(TextView.class, false); // remove it
  /packages/apps/DeskClock/src/com/android/deskclock/worldclock/
CitySelectionActivity.java 36 import android.widget.TextView;
352 final TextView index = (TextView) view.findViewById(R.id.index);
353 final TextView name = (TextView) view.findViewById(R.id.city_name);
354 final TextView time = (TextView) view.findViewById(R.id.city_time);
365 holder.name.setText(city.getName(), TextView.BufferType.SPANNABLE);
602 private final TextView index;
603 private final TextView name
    [all...]
  /frameworks/base/core/java/android/widget/
TextView.java 195 * &lt;TextView
212 * final TextView helloTextView = (TextView) findViewById(R.id.text_view_id);
218 * To customize the appearance of TextView, see <a href="https://developer.android.com/guide/topics/ui/themes.html">Styles and Themes</a>.
223 * See {@link android.R.styleable#TextView TextView Attributes},
304 public class TextView extends View implements ViewTreeObserver.OnPreDrawListener {
305 static final String LOG_TAG = "TextView";
352 // New state used to change background based on whether this TextView is multiline.
524 public void setErrorDrawable(Drawable dr, TextView tv)
    [all...]
  /frameworks/base/core/java/com/android/internal/os/
ZygoteInit.java 52 import android.widget.TextView;
197 TextView.preloadFontCache();
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
TextViewTest.java 150 import android.widget.TextView;
151 import android.widget.TextView.BufferType;
172 * Test {@link TextView}.
179 private TextView mTextView;
180 private TextView mSecondTextView;
208 * Promotes the TextView to editable and places focus in it to allow simulated typing. Used in
241 new TextView(mActivity);
242 new TextView(mActivity, null);
243 new TextView(mActivity, null, android.R.attr.textViewStyle);
244 new TextView(mActivity, null, 0, android.R.style.Widget_DeviceDefault_TextView)
    [all...]
  /external/robolectric/v1/lib/main/
android.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/20/
android.jar 
  /prebuilts/sdk/21/
android.jar 
  /prebuilts/sdk/22/
android.jar 

Completed in 535 milliseconds

1 2