Home | History | Annotate | Download | only in stk

Lines Matching full:toast

44 import android.widget.Toast;
474 * Display indication in the form of a toast to the user if required.
682 Toast toast = new Toast(mContext.getApplicationContext());
699 toast.setView(v);
700 toast.setDuration(Toast.LENGTH_LONG);
701 toast.setGravity(Gravity.BOTTOM, 0, 0);
702 toast.show();