HomeSort by relevance Sort by last modified time
    Searched defs:TextView (Results 1 - 25 of 37) 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/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/support/samples/Support4Demos/src/com/example/android/supportv4/app/
FragmentReceiveResultSupport.java 33 import android.widget.TextView;
62 private TextView mResults;
107 // Retrieve the TextView widget that will display results.
108 mResults = (TextView)v.findViewById(R.id.results);
111 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>"));
  /cts/tests/tests/transition/src/android/transition/cts/
TransitionTest.java 39 import android.widget.TextView;
130 mTransition.addTarget(TextView.class);
134 assertTrue(mTargets.get(0) instanceof TextView);
140 mTransition.addTarget(TextView.class);
149 assertTrue(mTargets.get(0) instanceof TextView);
349 mTransition.excludeTarget(TextView.class, true);
354 mTransition.excludeTarget(TextView.class, false); // remove it
  /frameworks/base/tests/SoundTriggerTestApp/src/com/android/test/soundtrigger/
SoundTriggerTestActivity.java 49 import android.widget.TextView;
67 private TextView mDebugView = null;
84 mDebugView = (TextView) findViewById(R.id.console);
88 mDebugView.setText(mDebugView.getText(), TextView.BufferType.EDITABLE);
  /packages/apps/Settings/src/com/android/settings/bluetooth/
DeviceProfilesSettings.java 38 import android.widget.TextView;
67 private TextView mProfileLabel;
101 mProfileLabel = (TextView) mRootView.findViewById(R.id.profiles_label);
103 deviceName.setText(mCachedDevice.getName(), TextView.BufferType.EDITABLE);
  /packages/apps/DeskClock/src/com/android/deskclock/worldclock/
CitySelectionActivity.java 37 import android.widget.TextView;
308 final TextView index = (TextView) view.findViewById(R.id.index);
309 final TextView name = (TextView) view.findViewById(R.id.city_name);
310 final TextView time = (TextView) view.findViewById(R.id.city_time);
321 holder.name.setText(city.getName(), TextView.BufferType.SPANNABLE);
550 private final TextView index;
551 private final TextView name
    [all...]
  /frameworks/base/core/java/com/android/internal/os/
ZygoteInit.java 43 import android.widget.TextView;
253 TextView.preloadFontCache();
    [all...]
  /frameworks/base/core/java/android/widget/
TextView.java 161 * Displays text to the user and optionally allows them to edit it. A TextView
167 * To allow users to copy some or all of the TextView's value and paste it somewhere else, set the
171 * allows users to make selection gestures in the TextView, which in turn triggers the system's
176 * See {@link android.R.styleable#TextView TextView Attributes},
252 public class TextView extends View implements ViewTreeObserver.OnPreDrawListener {
253 static final String LOG_TAG = "TextView";
298 // New state used to change background based on whether this TextView is multiline.
467 public void setErrorDrawable(Drawable dr, TextView tv) {
633 // they are defined by the TextView's style and are theme-dependent
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
TextViewTest.java 103 import android.widget.TextView;
104 import android.widget.TextView.BufferType;
105 import android.widget.TextView.OnEditorActionListener;
113 * Test {@link TextView}.
117 private TextView mTextView;
148 * Promotes the TextView to editable and places focus in it to allow simulated typing.
163 new TextView(mActivity);
165 new TextView(mActivity, null);
167 new TextView(mActivity, null, 0);
172 TextView tv = findTextView(R.id.textview_text)
    [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 
  /prebuilts/sdk/25/
android.jar 
  /prebuilts/sdk/4/
android.jar 

Completed in 418 milliseconds

1 2