OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TextView
(Results
401 - 425
of
2223
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/packages/apps/Settings/src/com/android/settings/deviceinfo/
StorageSummaryPreference.java
25
import android.widget.
TextView
;
54
final
TextView
summary = (
TextView
) view.findViewById(android.R.id.summary);
/packages/apps/Settings/src/com/android/settings/location/
RadioButtonPreference.java
23
import android.widget.
TextView
;
72
TextView
title = (
TextView
) view.findViewById(android.R.id.title);
/packages/apps/Settings/src/com/android/settings/notification/
EmptyTextSettings.java
26
import android.widget.
TextView
;
32
private
TextView
mEmpty;
37
mEmpty = new
TextView
(getContext());
/packages/apps/Settings/src/com/android/settings/password/
PasswordRequirementAdapter.java
23
import android.widget.
TextView
;
69
private
TextView
mDescriptionText;
73
mDescriptionText = (
TextView
) itemView;
/packages/apps/Settings/src/com/android/settings/wifi/
WifiConfigInfo.java
23
import android.widget.
TextView
;
35
private
TextView
mConfigList;
44
mConfigList = (
TextView
) findViewById(R.id.config_list);
/packages/apps/TV/src/com/android/tv/ui/sidepanel/
CheckBoxItem.java
24
import android.widget.
TextView
;
60
TextView
descriptionTextView = (
TextView
) view.findViewById(getDescriptionViewId());
/packages/apps/UnifiedEmail/src/com/android/mail/drawer/
HeaderDrawerItem.java
21
import android.widget.
TextView
;
55
final
TextView
textView
= (
TextView
) headerView.findViewById(R.id.header_text);
56
textView
.setText(mResource);
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
ConversationListEmptyView.java
25
import android.widget.
TextView
;
37
private
TextView
mText;
52
mText = (
TextView
) findViewById(R.id.empty_text);
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
TextViewTest.java
13
import android.widget.
TextView
;
40
private
TextView
textView
;
44
textView
= new
TextView
(new Activity());
49
TextView
textView
= new
TextView
(null);
51
textView
.setOnEditorActionListener(actionListener);
53
shadowOf(
textView
).triggerEditorAction(EditorInfo.IME_ACTION_GO)
[
all
...]
ViewInnerTextTest.java
7
import android.widget.
TextView
;
28
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))
[
all
...]
/cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/
ResponderTestActivity.java
27
import android.widget.
TextView
;
53
private
TextView
mTextView;
59
private
TextView
mMyDeviceView;
87
mTextView = (
TextView
) findViewById(id.p2p_resp_text);
88
mMyDeviceView = (
TextView
) findViewById(id.p2p_my_device);
/cts/tests/tests/widget/src/android/widget/cts/
TwoLineListItemTest.java
27
import android.widget.
TextView
;
93
TextView
text1 = new
TextView
(mActivity);
95
TextView
text2 = new
TextView
(mActivity);
/developers/build/prebuilts/gradle/DirectShare/Application/src/main/java/com/example/android/directshare/
SendMessageActivity.java
23
import android.widget.
TextView
;
48
private
TextView
mTextContactName;
49
private
TextView
mTextMessageBody;
57
mTextContactName = (
TextView
) findViewById(R.id.contact_name);
58
mTextMessageBody = (
TextView
) findViewById(R.id.message_body);
/developers/samples/android/content/DirectShare/Application/src/main/java/com/example/android/directshare/
SendMessageActivity.java
23
import android.widget.
TextView
;
48
private
TextView
mTextContactName;
49
private
TextView
mTextMessageBody;
57
mTextContactName = (
TextView
) findViewById(R.id.contact_name);
58
mTextMessageBody = (
TextView
) findViewById(R.id.message_body);
/development/samples/ApiDemos/src/com/example/android/apis/view/
List6.java
27
import android.widget.
TextView
;
375
mTitle = new
TextView
(context);
379
mDialogue = new
TextView
(context);
407
private
TextView
mTitle;
408
private
TextView
mDialogue;
/development/samples/JetBoy/src/com/example/android/jetboy/
JetBoy.java
30
import android.widget.
TextView
;
47
private
TextView
mTextView;
50
private
TextView
mTimerView;
74
mTextView = (
TextView
)findViewById(R.id.text);
75
mTimerView = (
TextView
)findViewById(R.id.timer);
/development/samples/SearchableDictionary/src/com/example/android/searchabledict/
WordActivity.java
32
import android.widget.
TextView
;
56
TextView
word = (
TextView
) findViewById(R.id.word);
57
TextView
definition = (
TextView
) findViewById(R.id.definition);
/development/samples/browseable/DirectShare/src/com.example.android.directshare/
SendMessageActivity.java
23
import android.widget.
TextView
;
48
private
TextView
mTextContactName;
49
private
TextView
mTextMessageBody;
57
mTextContactName = (
TextView
) findViewById(R.id.contact_name);
58
mTextMessageBody = (
TextView
) findViewById(R.id.message_body);
/development/samples/training/TabCompat/src/com/example/android/tabcompat/
MainActivity.java
31
import android.widget.
TextView
;
111
TextView
textView
= new
TextView
(getActivity());
112
textView
.setGravity(Gravity.CENTER);
113
textView
.setText(R.string.tab_photos);
114
return
textView
;
123
TextView
textView
= new
TextView
(getActivity())
[
all
...]
/development/samples/training/basic/ActivityLifecycle/src/com/example/android/lifecycle/
ActivityA.java
23
import android.widget.
TextView
;
34
private
TextView
mStatusView;
35
private
TextView
mStatusAllView;
43
mStatusView = (
TextView
)findViewById(R.id.status_view_a);
44
mStatusAllView = (
TextView
)findViewById(R.id.status_view_all_a);
ActivityB.java
23
import android.widget.
TextView
;
34
private
TextView
mStatusView;
35
private
TextView
mStatusAllView;
43
mStatusView = (
TextView
)findViewById(R.id.status_view_b);
44
mStatusAllView = (
TextView
)findViewById(R.id.status_view_all_b);
ActivityC.java
23
import android.widget.
TextView
;
34
private
TextView
mStatusView;
35
private
TextView
mStatusAllView;
43
mStatusView = (
TextView
)findViewById(R.id.status_view_c);
44
mStatusAllView = (
TextView
)findViewById(R.id.status_view_all_c);
/external/replicaisland/src/com/replica/replicaisland/
SliderPreference.java
22
import android.widget.
TextView
;
67
TextView
minText = (
TextView
)view.findViewById(R.id.min);
72
TextView
maxText = (
TextView
)view.findViewById(R.id.max);
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
MessageBar.java
29
import android.widget.
TextView
;
59
TextView
infoText = (
TextView
) mView.findViewById(R.id.textview_info);
74
TextView
errorText = (
TextView
) mView.findViewById(R.id.textview_error);
/frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
ListViewAddRemoveNoTransition.java
26
import android.widget.
TextView
;
58
TextView
v = (
TextView
) listview.getChildAt(i);
69
TextView
v = (
TextView
) listview.getChildAt(i);
Completed in 1565 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>