OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mToast
(Results
1 - 5
of
5
) sorted by null
/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();
/cts/tests/tests/widget/src/android/widget/cts/
ToastTest.java
70
private Toast
mToast
;
124
() ->
mToast
= Toast.makeText(mContext, TEST_TOAST_TEXT, Toast.LENGTH_LONG));
131
final View view =
mToast
.getView();
137
runOnMainAndDrawSync(view,
mToast
::show);
157
final View view =
mToast
.getView();
162
mToast
.show();
163
mToast
.cancel();
172
assertFalse(
mToast
.getView() instanceof ImageView);
179
mToast
.setView(imageView);
180
mToast
.show()
[
all
...]
/development/samples/ApiDemos/src/com/example/android/apis/app/
AlarmController.java
69
Toast
mToast
;
118
if (
mToast
!= null) {
119
mToast
.cancel();
121
mToast
= Toast.makeText(AlarmController.this, R.string.one_shot_scheduled,
123
mToast
.show();
150
if (
mToast
!= null) {
151
mToast
.cancel();
153
mToast
= Toast.makeText(AlarmController.this, R.string.repeating_scheduled,
155
mToast
.show();
172
if (
mToast
!= null)
[
all
...]
/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();
/cts/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/
AuthenticationBoundKeyTestActivity.java
116
private Toast
mToast
;
121
mToast
= Toast.makeText(AuthenticationBoundKeyTestActivity.this, "", Toast.LENGTH_SHORT);
126
mToast
.cancel();
144
mToast
.setText(String.format("Lockscreen challenge start in %d seconds..",
146
mToast
.show();
Completed in 98 milliseconds