OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TextView
(Results
101 - 125
of
1355
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/development/samples/ApiDemos/src/com/example/android/apis/view/
ScrollView2.java
24
import android.widget.
TextView
;
39
TextView
textView
= new
TextView
(this);
40
textView
.setText("Text View " + i);
45
layout.addView(
textView
, p);
Tabs2.java
25
import android.widget.
TextView
;
53
final
TextView
tv = new
TextView
(this);
Tabs5.java
25
import android.widget.
TextView
;
50
final
TextView
tv = new
TextView
(this);
Tabs6.java
25
import android.widget.
TextView
;
51
final
TextView
tv = new
TextView
(this);
List13.java
28
import android.widget.
TextView
;
43
private
TextView
mStatus;
96
TextView
text;
99
text = (
TextView
)mInflater.inflate(android.R.layout.simple_list_item_1, parent, false);
101
text = (
TextView
)convertView;
122
mStatus = (
TextView
) findViewById(R.id.status);
146
TextView
t = (
TextView
)view.getChildAt(i);
/development/samples/AppNavigation/src/com/example/android/appnavigation/app/
PeerActivity.java
25
import android.widget.
TextView
;
39
TextView
tv = (
TextView
) findViewById(R.id.peer_counter);
/development/samples/training/basic/ActivityLifecycle/src/com/example/android/lifecycle/util/
Utils.java
20
import android.widget.
TextView
;
33
* @param viewMethods
TextView
to list out the lifecycle methods called
34
* @param viewStatus
TextView
to list out the status of all Activity classes
36
public static void printStatus(final
TextView
viewMethods, final
TextView
viewStatus) {
40
// Get the stack of Activity lifecycle methods called and print to
TextView
50
// Get the status of all Activity classes and print to
TextView
/development/samples/training/notify-user/src/com/example/android/pingme/
ResultActivity.java
21
import android.widget.
TextView
;
34
TextView
text = (
TextView
) findViewById(R.id.result_message);
/development/samples/training/testingfun/app/src/com/example/android/testingfun/lesson3/
ClickFunActivity.java
24
import android.widget.
TextView
;
27
* Activity which shows a "click me" button. When the button is clicked, a
TextView
is shown below
37
final
TextView
infoTextView = (
TextView
) findViewById(R.id.info_text_view);
/development/samples/training/testingfun/app/src/com/example/android/testingfun/lesson5/
ReceiverActivity.java
25
import android.widget.
TextView
;
56
final
TextView
receiverTextView = (
TextView
) findViewById(R.id.received_message_text_view);
/development/samples/training/testingfun/app/tests/src/com/example/android/testingfun/tests/lesson2/
MyFirstTestActivityTest.java
22
import android.widget.
TextView
;
30
private
TextView
mFirstTestText;
45
mFirstTestText = (
TextView
) mFirstTestActivity.findViewById(R.id.my_first_test_text_view);
/external/replicaisland/src/com/replica/replicaisland/
CustomToastSystem.java
24
import android.widget.
TextView
;
29
private
TextView
mText;
36
mText = (
TextView
) mView.findViewById(R.id.text);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/matchers/
TextViewHasTextMatcher.java
3
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) {
/frameworks/base/core/tests/coretests/src/android/widget/gridview/
GridInHorizontal.java
24
import android.widget.
TextView
;
33
TextView
mText;
48
mText = (
TextView
) findViewById(R.id.text);
GridInVertical.java
24
import android.widget.
TextView
;
33
TextView
mText;
48
mText = (
TextView
) findViewById(R.id.text);
/frameworks/base/tests/BiDiTests/src/com/android/bidi/
BiDiTestTextViewDrawablesLtr.java
24
import android.widget.
TextView
;
29
private
TextView
textViewError;
42
textViewError = (
TextView
) currentView.findViewById(R.id.textview_error);
BiDiTestTextViewDrawablesRtl.java
24
import android.widget.
TextView
;
29
private
TextView
textViewError;
42
textViewError = (
TextView
) currentView.findViewById(R.id.textview_error);
/packages/services/Telephony/src/com/android/phone/
MultiLineTitleEditTextPreference.java
23
import android.widget.
TextView
;
37
* handle to the "title"
TextView
.
60
// The "title"
TextView
inside an EditTextPreference defaults to
62
// We override onBindView() purely to look up that
TextView
and call
68
TextView
textView
= (
TextView
) view.findViewById(com.android.internal.R.id.title);
69
if (
textView
!= null) {
70
textView
.setSingleLine(false);
/sdk/testapps/libsTest/app/src/com/android/tests/libstest/app/
App.java
4
import android.widget.
TextView
;
14
TextView
tv = (
TextView
) a.findViewById(R.id.app_text2);
/sdk/testapps/libsTest/lib1/src/com/android/tests/libstest/lib1/
Lib1.java
4
import android.widget.
TextView
;
14
TextView
tv = (
TextView
) a.findViewById(R.id.lib1_text2);
/sdk/testapps/libsTest/lib2/src/com/android/tests/libstest/lib2/
Lib2.java
4
import android.widget.
TextView
;
14
TextView
tv = (
TextView
) a.findViewById(R.id.lib2_text2);
/frameworks/base/core/java/android/transition/
Recolor.java
26
import android.widget.
TextView
;
33
* {@link
TextView
#setTextColor(android.content.res.ColorStateList)
46
if (transitionValues.view instanceof
TextView
) {
48
((
TextView
)transitionValues.view).getCurrentTextColor());
82
if (view instanceof
TextView
) {
83
TextView
textView
= (
TextView
) view;
87
textView
.setTextColor(end);
89
return ObjectAnimator.ofObject(
textView
, "textColor"
[
all
...]
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
TextFadeActivity.java
26
import android.widget.
TextView
;
37
((
TextView
) findViewById(R.id.contact_tile_name)).setEllipsize(TextUtils.TruncateAt.MARQUEE);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
MockView.java
23
import android.widget.
TextView
;
31
public class MockView extends
TextView
{
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/
AccessibleTextView.java
24
import android.widget.
TextView
;
29
public class AccessibleTextView extends
TextView
{
Completed in 406 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>