OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mToast
(Results
1 - 11
of
11
) sorted by null
/cts/tests/tests/widget/src/android/widget/cts/
ToastTest.java
40
private Toast
mToast
;
56
mToast
= new Toast(mActivity);
119
mToast
= Toast.makeText(mActivity, TEST_TOAST_TEXT, Toast.LENGTH_LONG);
124
final View view =
mToast
.getView();
132
mToast
.show();
145
assertNull(
mToast
.getView());
147
mToast
.show();
157
mToast
= Toast.makeText(mActivity, TEST_TOAST_TEXT, Toast.LENGTH_LONG);
162
final View view =
mToast
.getView();
168
mToast
.show()
[
all
...]
/external/replicaisland/src/com/replica/replicaisland/
CustomToastSystem.java
30
private Toast
mToast
;
37
mToast
= new Toast(context);
38
mToast
.setView(mView);
52
mToast
.setGravity(Gravity.CENTER, 0, 0);
53
mToast
.setDuration(length);
54
mToast
.show();
/packages/apps/Camera/src/com/android/camera/ui/
RotateTextToast.java
32
RotateLayout
mToast
;
39
mToast
= (RotateLayout) v.findViewById(R.id.rotate_toast);
40
TextView tv = (TextView)
mToast
.findViewById(R.id.message);
42
mToast
.setOrientation(orientation, false);
49
Util.fadeOut(
mToast
);
50
mLayoutRoot.removeView(
mToast
);
51
mToast
= null;
56
mToast
.setVisibility(View.VISIBLE);
/packages/apps/Camera2/src/com/android/camera/ui/
RotateTextToast.java
32
RotateLayout
mToast
;
39
mToast
= (RotateLayout) v.findViewById(R.id.rotate_toast);
40
TextView tv = (TextView)
mToast
.findViewById(R.id.message);
42
mToast
.setOrientation(orientation, false);
49
CameraUtil.fadeOut(
mToast
);
50
mLayoutRoot.removeView(
mToast
);
51
mToast
= null;
56
mToast
.setVisibility(View.VISIBLE);
/packages/apps/LegacyCamera/src/com/android/camera/ui/
RotateTextToast.java
32
RotateLayout
mToast
;
39
mToast
= (RotateLayout) v.findViewById(R.id.rotate_toast);
40
TextView tv = (TextView)
mToast
.findViewById(R.id.message);
42
mToast
.setOrientation(orientation);
48
Util.fadeOut(
mToast
);
49
mLayoutRoot.removeView(
mToast
);
50
mToast
= null;
55
mToast
.setVisibility(View.VISIBLE);
/development/samples/ApiDemos/src/com/example/android/apis/app/
AlarmController.java
67
Toast
mToast
;
105
if (
mToast
!= null) {
106
mToast
.cancel();
108
mToast
= Toast.makeText(AlarmController.this, R.string.one_shot_scheduled,
110
mToast
.show();
137
if (
mToast
!= null) {
138
mToast
.cancel();
140
mToast
= Toast.makeText(AlarmController.this, R.string.repeating_scheduled,
142
mToast
.show();
159
if (
mToast
!= null)
[
all
...]
/development/samples/Support4Demos/src/com/example/android/supportv4/content/
SimpleWakefulController.java
33
Toast
mToast
;
67
if (
mToast
!= null) {
68
mToast
.cancel();
70
mToast
= Toast.makeText(SimpleWakefulController.this, R.string.simple_wakeful_scheduled,
72
mToast
.show();
/development/samples/ApiDemos/src/com/example/android/apis/content/
PickContact.java
46
Toast
mToast
;
98
if (
mToast
!= null) {
99
mToast
.cancel();
102
mToast
= Toast.makeText(this, txt, Toast.LENGTH_LONG);
103
mToast
.show();
/packages/services/Telephony/src/com/android/phone/
NotificationMgr.java
106
private Toast
mToast
;
[
all
...]
/packages/apps/Calendar/src/com/android/calendar/recurrencepicker/
RecurrencePickerDialog.java
275
private Toast
mToast
;
[
all
...]
/packages/apps/Music/src/com/android/music/
MediaPlaybackActivity.java
87
private Toast
mToast
;
[
all
...]
Completed in 820 milliseconds