HomeSort by relevance Sort by last modified time
    Searched defs:textview (Results 1 - 2 of 2) sorted by null

  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
GlyphCacheActivity.java 25 import android.widget.TextView;
54 private TextView createTextView() {
55 TextView textview = new TextView(this); local
56 textview.setTextSize(6 + (int) (Math.random() * 5) * 10);
57 textview.setTextColor(0xff << 24 | (int) (Math.random() * 255) << 16 |
59 textview.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT,
63 textview.setText(createString(numChars));
65 return textview;
    [all...]
  /frameworks/base/core/java/android/transition/
ChangeText.java 27 import android.widget.TextView;
32 * This transition tracks changes to the text in TextView targets. If the text
54 * Flag specifying that the text in affected/changing TextView targets will keep
129 if (transitionValues.view instanceof TextView) {
130 TextView textview = (TextView) transitionValues.view; local
131 transitionValues.values.put(PROPNAME_TEXT, textview.getText());
132 if (textview instanceof EditText) {
134 textview.getSelectionStart())
    [all...]

Completed in 84 milliseconds