public class ToastMessage extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.toast);
Context context = getApplicationContext();// TOAST MESSAGA START
CharSequence text = " Welcome To toast Message !";
int duration = Toast.LENGTH_LONG;
Toast toast = Toast.makeText(context, text, duration);
toast.show(); // TOAST MESSSAGE CLOSe
}
}
No comments:
Post a Comment