Home
last modified time | relevance | path

Searched refs:mToast (Results 1 – 8 of 8) sorted by relevance

/packages/apps/LegacyCamera/src/com/android/camera/ui/
DRotateTextToast.java32 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/services/Car/FrameworkPackageStubs/src/com/android/car/frameworkpackagestubs/
DStubs.java44 private Toast mToast; field in Stubs.BaseActivity
63 mToast = Toast.makeText(this, getMessage(), Toast.LENGTH_LONG); in showToast()
64 mToast.show(); in showToast()
68 if (mToast != null) { in cancelToast()
69 mToast.cancel(); in cancelToast()
/packages/apps/Car/Settings/src/com/android/car/settings/sound/
DAudioRoutesManager.java65 private Toast mToast; field in AudioRoutesManager
282 if (mToast != null) { in showToast()
283 mToast.cancel(); in showToast()
288 mToast = Toast.makeText(mContext, text, duration); in showToast()
289 mToast.show(); in showToast()
/packages/apps/Settings/tests/robotests/src/com/android/settings/development/qstile/
DWirelessDebuggingTest.java52 private Toast mToast; field in WirelessDebuggingTest
66 ReflectionHelpers.setField(mWirelessDebugging, "mToast", mToast); in setUp()
171 verify(mToast).show(); in setIsEnabled_true_keyguardUnlocked_WifiDisconnected_shouldDisableAdbWifi()
/packages/apps/DevCamera/src/com/android/devcamera/
DDevCameraActivity.java452 Toast mToast; field in DevCameraActivity
455 if (mToast != null) { in fileNameToast()
456 mToast.cancel(); in fileNameToast()
458 mToast = Toast.makeText(this, s, Toast.LENGTH_SHORT); in fileNameToast()
459 mToast.setGravity(Gravity.TOP, 0, 0); in fileNameToast()
460 mToast.show(); in fileNameToast()
/packages/apps/Settings/src/com/android/settings/development/qstile/
DDevelopmentTiles.java248 private Toast mToast; field in DevelopmentTiles.WirelessDebugging
263 mToast = Toast.makeText(mContext, in onCreate()
298 mToast.show(); in setIsEnabled()
/packages/apps/Car/Settings/tests/multivalent/src/com/android/car/settings/location/
DAdasLocationSwitchPreferenceControllerTest.java93 private Toast mToast; field in AdasLocationSwitchPreferenceControllerTest
191 .thenReturn(mToast); in powerPolicyOff_onPreferenceClicked_showCorrectToast()
201 verify(mToast).show(); in powerPolicyOff_onPreferenceClicked_showCorrectToast()
210 .thenReturn(mToast); in powerPolicyOff_onPreferenceClicked_showCorrectToast_flagReq()
220 verify(mToast).show(); in powerPolicyOff_onPreferenceClicked_showCorrectToast_flagReq()
/packages/services/Telephony/src/com/android/phone/
DNotificationMgr.java131 private Toast mToast; field in NotificationMgr