constructor
Activity nesnesinin context alanını alır. Bir düğmenin click olayı içinde kodlamak istersek şöyle yaparız.
Şöyle yaparız.
setCancellable metodu
Şöyle yaparız.
Şöyle yaparız
Şöyle yaparız.
Şöyle yaparız.
Şöyle yaparız.
Şöyle yaparız.
Şöyle yaparız.
Şöyle yaparız.
Activity nesnesinin context alanını alır. Bir düğmenin click olayı içinde kodlamak istersek şöyle yaparız.
AlertDialog.Builder builder = new AlertDialog.Builder (MyActivity.this);
Şöyle yaparız.builder = AlertDialog.Builder(context, R.style.MyAlertDialogTheme);
create metoduŞöyle yaparız.
AlertDialog alert = builder.create();
Şöyle yaparız.
builder.setCancelable(false)
setItems metoduŞöyle yaparız
builder.setItems(R.array.preference_grid_entries, gridDialogListener);
setMessage metoduŞöyle yaparız.
builder.setMessage("GPS is not active. Do you want to open?");
setNegativeButton metoduŞöyle yaparız.
builder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
dialog.cancel();
}
});
setOnDismissListener metoduŞöyle yaparız.
builder.setOnDismissListener(new DialogInterface.OnDismissListener() {
public void onDismiss(DialogInterface dialog) {
...
}
});
setPositiveButton metoduŞöyle yaparız.
builder.setPositiveButton(android.R.string.ok, null);
Şöyle yaparız.builder.setPositiveButton("Settings", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog,int which) {
...
}
});
setTitle metodu
Şöyle yaparız.builder.setTitle("GPS Settings");
setView metoduŞöyle yaparız.
View promptView = ...;
builder.setView(promptView);
show metoduŞöyle yaparız.
// Showing Alert Message
builder.show();
Hiç yorum yok:
Yorum Gönder