OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:textview
(Results
1 - 5
of
5
) 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
...]
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/ui/
ViewInflater.java
43
import android.widget.
TextView
;
502
} else if (attr.equals("digits") && view instanceof
TextView
) {
503
((
TextView
) view).setKeyListener(DigitsKeyListener.getInstance(value));
520
TextView
textview
= (
TextView
) view;
local
523
textview
.setTypeface(Typeface.DEFAULT);
525
textview
.setTypeface(
textview
.getTypeface(), style);
528
TextView
textview = (TextView) view
local
[
all
...]
/external/robolectric/v3/runtime/
android-all-4.4_r1-robolectric-1.jar
android-all-5.0.0_r2-robolectric-1.jar
Completed in 1579 milliseconds