/development/samples/ContactManager/src/com/example/android/contactmanager/ |
ContactAdder.java | 41 import android.widget.Toast; 221 int duration = Toast.LENGTH_SHORT; 222 Toast toast = Toast.makeText(ctx, txt, duration); local 223 toast.show();
|
/packages/apps/Nfc/src/com/android/nfc/ |
SendUi.java | 51 import android.widget.Toast; 400 public void finishAndToast(int finishMode, String toast) { 401 mToastString = toast; 494 Toast.makeText(mContext, mToastString, Toast.LENGTH_LONG).show();
|
/hardware/ti/wpan/tools/FM/FmTxApp/src/com/ti/fmtxapp/ |
FmTx.java | 35 import android.widget.Toast; 176 int duration = Toast.LENGTH_SHORT; 178 Toast toast = Toast.makeText(mContext, text, duration); local 179 toast.setGravity(android.view.Gravity.CENTER_VERTICAL, 0, 0); 180 toast.show(); [all...] |
/hardware/ti/wpan/tools/FM/FmRxApp/src/com/ti/fmrxapp/ |
FmRxApp.java | 62 import android.widget.Toast; 1767 Toast toast = new Toast(getApplicationContext()); local [all...] |
/packages/apps/Camera2/src/com/android/camera/crop/ |
CropActivity.java | 43 import android.widget.Toast; 234 * Display toast for image loading failure. 238 Toast toast = Toast.makeText(this, text, Toast.LENGTH_SHORT); local 239 toast.show(); 331 Toast.makeText(this, R.string.setting_wallpaper, Toast.LENGTH_LONG).show();
|
/packages/apps/Dialer/src/com/android/dialer/ |
CallDetailActivity.java | 56 import android.widget.Toast; 458 Toast.makeText(CallDetailActivity.this, R.string.toast_call_detail_error, 459 Toast.LENGTH_SHORT).show(); 665 final Toast toast = Toast.makeText(CallDetailActivity.this, 666 R.string.add_contact_not_available, Toast.LENGTH_SHORT); 667 toast.show(); [all...] |
DialtactsActivity.java | 55 import android.widget.Toast; 430 Toast toast = Toast.makeText(this, local 432 Toast.LENGTH_SHORT); 433 toast.show(); 496 Toast.makeText(DialtactsActivity.this, R.string.voice_search_not_available, 497 Toast.LENGTH_SHORT).show(); [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/ |
CropActivity.java | 43 import android.widget.Toast; 237 * Display toast for image loading failure. 241 Toast toast = Toast.makeText(this, text, Toast.LENGTH_SHORT); local 242 toast.show(); 334 Toast.makeText(this, R.string.setting_wallpaper, Toast.LENGTH_LONG).show();
|
/packages/apps/DeskClock/src/com/android/deskclock/ |
AlarmClockFragment.java | 64 import android.widget.Toast; 109 // can not be found, and toast message will pop up that the alarm has be deleted. 536 // dismiss the toast bar. However, since there is no way to determine if 537 // home was pressed, just dismiss any existing toast bar when restarting 622 Toast toast = Toast.makeText(context, R.string.missed_alarm_has_been_deleted, local 623 Toast.LENGTH_LONG); 624 ToastMaster.setToast(toast); 625 toast.show() [all...] |