Searched refs:mToast (Results 1 – 7 of 7) sorted by relevance
/packages/apps/LegacyCamera/src/com/android/camera/ui/ |
D | RotateTextToast.java | 32 RotateLayout mToast; field in RotateTextToast 39 mToast = (RotateLayout) v.findViewById(R.id.rotate_toast); in RotateTextToast() 40 TextView tv = (TextView) mToast.findViewById(R.id.message); in RotateTextToast() 42 mToast.setOrientation(orientation); in RotateTextToast() 48 Util.fadeOut(mToast); 49 mLayoutRoot.removeView(mToast); 50 mToast = null; 55 mToast.setVisibility(View.VISIBLE); in show()
|
/packages/apps/Camera/src/com/android/camera/ui/ |
D | RotateTextToast.java | 32 RotateLayout mToast; field in RotateTextToast 39 mToast = (RotateLayout) v.findViewById(R.id.rotate_toast); in RotateTextToast() 40 TextView tv = (TextView) mToast.findViewById(R.id.message); in RotateTextToast() 42 mToast.setOrientation(orientation, false); in RotateTextToast() 49 Util.fadeOut(mToast); 50 mLayoutRoot.removeView(mToast); 51 mToast = null; 56 mToast.setVisibility(View.VISIBLE); in show()
|
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/about/ |
D | AboutActivity.java | 104 private Toast mToast; field in AboutActivity 269 if (mToast != null) { in showToast() 270 mToast.cancel(); in showToast() 272 mToast = Toast.makeText(this, toastString, Toast.LENGTH_SHORT); in showToast() 273 mToast.show(); in showToast()
|
/packages/services/Telephony/src/com/android/phone/ |
D | NotificationMgr.java | 93 private Toast mToast; field in NotificationMgr 630 if (mToast != null) { in postTransientNotification() 631 mToast.cancel(); in postTransientNotification() 634 mToast = Toast.makeText(mContext, msg, Toast.LENGTH_LONG); in postTransientNotification() 635 mToast.show(); in postTransientNotification()
|
/packages/apps/FMRadio/src/com/android/fmradio/ |
D | FmMainActivity.java | 147 private Toast mToast = null; field in FmMainActivity 1048 if (null == mToast) { in showToast() 1049 mToast = Toast.makeText(mContext, text, Toast.LENGTH_SHORT); in showToast() 1051 mToast.setText(text); in showToast() 1052 mToast.show(); in showToast()
|
/packages/apps/Music/src/com/android/music/ |
D | MediaPlaybackActivity.java | 87 private Toast mToast; field in MediaPlaybackActivity 1021 if (mToast == null) { in showToast() 1022 mToast = Toast.makeText(this, "", Toast.LENGTH_SHORT); in showToast() 1024 mToast.setText(resid); in showToast() 1025 mToast.show(); in showToast()
|
/packages/apps/Calendar/src/com/android/calendar/recurrencepicker/ |
D | RecurrencePickerDialog.java | 275 private Toast mToast; field in RecurrencePickerDialog 1014 if (mToast != null) { 1015 mToast.cancel(); 1017 mToast = Toast.makeText(getActivity(), rrule, 1019 mToast.show();
|