Searched defs:textView (Results 1 - 5 of 5) sorted by relevance

/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DViewInnerTextTest.java28 top.addView(textView("blah"));
30 top.addView(textView("a b c"));
35 innerLayout.addView(textView("d e f"));
36 innerLayout.addView(textView("g h i"));
37 innerLayout.addView(textView(""));
38 innerLayout.addView(textView(null));
39 innerLayout.addView(textView("jkl!"));
41 top.addView(textView("mnop"));
49 top.addView(textView("blah", View.VISIBLE));
50 top.addView(textView("blar
66 private TextView textView(String text) { method in class:ViewInnerTextTest
70 private TextView textView(String text, int visibility) { method in class:ViewInnerTextTest
[all...]
H A DTextViewTest.java40 private TextView textView; field in class:TextViewTest
44 textView = new TextView(new Activity());
49 TextView textView = new TextView(null);
51 textView.setOnEditorActionListener(actionListener);
53 shadowOf(textView).triggerEditorAction(EditorInfo.IME_ACTION_GO);
55 assertThat(actionListener.textView, is(textView));
61 textView.setText("here's some text http://google.com/\nblah\thttp://another.com/123?456 blah");
63 assertThat(urlStringsFrom(textView.getUrls()), equalTo(asList(
71 assertThat(textView
394 private TextView textView; field in class:TextViewTest.TestOnEditorActionListener
398 onEditorAction(TextView textView, int sentImeId, KeyEvent keyEvent) argument
[all...]
/external/chromium_org/base/android/java/src/org/chromium/base/
H A DApiCompatibilityUtils.java191 public static void setCompoundDrawablesRelative(TextView textView, Drawable start, Drawable top, argument
197 boolean isRtl = isLayoutRtl(textView);
198 textView.setCompoundDrawables(isRtl ? end : start, top, isRtl ? start : end, bottom);
200 textView.setCompoundDrawablesRelative(start, top, end, bottom);
202 textView.setCompoundDrawables(start, top, end, bottom);
210 public static void setCompoundDrawablesRelativeWithIntrinsicBounds(TextView textView, argument
214 boolean isRtl = isLayoutRtl(textView);
215 textView.setCompoundDrawablesWithIntrinsicBounds(isRtl ? end : start, top,
218 textView.setCompoundDrawablesRelativeWithIntrinsicBounds(start, top, end, bottom);
220 textView
228 setCompoundDrawablesRelativeWithIntrinsicBounds(TextView textView, int start, int top, int end, int bottom) argument
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DConversationDialogActivity.java85 private void formatPages(Conversation conversation, TextView textView) { argument
87 final int maxWidth = textView.getWidth();
88 final int maxHeight = textView.getHeight();
89 paint.setTextSize(textView.getTextSize());
90 paint.setTypeface(textView.getTypeface());
204 TextView textView = (TextView)findViewById(R.id.typewritertext);
205 formatPages(mConversation, textView);
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 2136 milliseconds