Searched refs:TextView (Results 1 - 25 of 122) sorted by relevance

12345

/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
H A DCountingAdapter.java6 import android.widget.TextView;
37 TextView textView = new TextView(null);
H A DHtmlTest.java8 import android.widget.TextView;
28 TextView textView = new TextView(context);
H A DTextViewTest.java13 import android.widget.TextView;
40 private TextView textView;
44 textView = new TextView(new Activity());
49 TextView textView = new TextView(null);
98 TextView textView = new TextView(null);
109 TextView black = (TextView) activity.findViewById(R.id.black_text_view);
113 TextView whit
[all...]
H A DViewInnerTextTest.java7 import android.widget.TextView;
66 private TextView textView(String text) {
70 private TextView textView(String text, int visibility) {
71 TextView textView = new TextView(activity);
/external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/
H A DCrashLogActivity.java22 import android.widget.TextView;
32 TextView txtCrashLog;
38 txtCrashLog = (TextView) findViewById(R.id.txt_crash_log);
H A DAboutFragment.java26 import android.widget.TextView;
48 TextView textView = (TextView) getActivity().findViewById(R.id.txt_build_info);
H A DFrontPageFragment.java26 import android.widget.TextView;
46 final TextView midiText = (TextView) view.findViewById(R.id.midi_text);
H A DDiagnosticsFragment.java29 import android.widget.TextView;
38 private TextView logTextView;
60 logTextView = (TextView) view.findViewById(R.id.txt_log_diag);
H A DLogFragment.java30 import android.widget.TextView;
40 TextView textView;
68 textView = (TextView) activity.findViewById(R.id.txt_log);
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
H A DShadowTextView.java15 import android.widget.TextView;
26 @Implements(TextView.class)
28 @RealObject TextView realTextView;
31 private TextView.BufferType bufferType = TextView.BufferType.NORMAL;
44 private TextView.OnEditorActionListener onEditorActionListener;
67 directlyOn(realTextView, TextView.class).setTextAppearance(context, resid);
74 return directlyOn(realTextView, TextView.class).onKeyDown(keyCode, event);
81 return directlyOn(realTextView, TextView.class).onKeyUp(keyCode, event);
93 * Returns the text string of this {@code TextView}
[all...]
H A DShadowProgressDialog.java6 import android.widget.TextView;
27 TextView message = ReflectionHelpers.getField(realProgressDialog, "mMessageView");
/external/dagger2/examples/android-activity-graphs/src/main/java/com/example/dagger/activitygraphs/ui/
H A DHomeFragment.java23 import android.widget.TextView;
38 TextView tv = new TextView(getActivity());
/external/deqp/android/package/src/com/drawelements/deqp/execserver/
H A DExecServerActivity.java31 import android.widget.TextView;
39 private TextView m_statusText;
46 m_statusText = (TextView)findViewById(R.id.status_text);
/external/replicaisland/src/com/replica/replicaisland/
H A DCustomToastSystem.java24 import android.widget.TextView;
29 private TextView mText;
36 mText = (TextView) mView.findViewById(R.id.text);
H A DSliderPreference.java22 import android.widget.TextView;
67 TextView minText = (TextView)view.findViewById(R.id.min);
72 TextView maxText = (TextView)view.findViewById(R.id.max);
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/matchers/
H A DTextViewHasTextMatcher.java3 import android.widget.TextView;
9 public class TextViewHasTextMatcher<T extends TextView> extends TypeSafeMatcher<T> {
39 public static <T extends TextView> Matcher<T> hasText(String expectedTextViewText) {
H A DHasCompoundDrawablesMatcher.java3 import android.widget.TextView;
12 public class HasCompoundDrawablesMatcher extends TypeSafeMatcher<TextView> {
21 public boolean matchesSafely(TextView actual) {
42 public static Matcher<TextView> hasCompoundDrawables(int left, int top, int right, int bottom) {
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
H A DShadowCountingAdapter.java6 import android.widget.TextView;
38 TextView textView = new TextView(RuntimeEnvironment.application);
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/android/
H A DCustomStateView.java5 import android.widget.TextView;
8 public class CustomStateView extends TextView {
/external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
H A DAboutActivity.java22 import android.widget.TextView;
H A DCatchEventsEditText.java24 import android.widget.TextView;
29 public class CatchEventsEditText extends EditText implements TextView.OnEditorActionListener {
57 public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowButton.java4 import android.widget.TextView;
/external/robolectric-shadows/integration_tests/mockito/src/test/java/org/robolectric/integration_tests/mockito/
H A DMockitoInjectMocksTest.java4 import android.widget.TextView;
21 TextView textView;
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/
H A DHelpActivity.java29 import android.widget.TextView;
54 TextView subtitle = (TextView) findViewById(R.id.version);
58 ((TextView) findViewById(R.id.help_acks_text)).setMovementMethod(LinkMovementMethod
/external/vogar/src/vogar/target/
H A DTestActivity.java25 import android.widget.TextView;
41 private TextView view;
61 this.view = new TextView(this);

Completed in 3166 milliseconds

12345