Chcę wyświetlić okno komunikatu z przyciskiem OK. Użyłem poniższego kodu, ale powoduje to błąd kompilacji z argumentem:
AlertDialog.Builder dlgAlert = new AlertDialog.Builder(this);
dlgAlert.setMessage("This is an alert with no consequence");
dlgAlert.setTitle("App Title");
dlgAlert.setPositiveButton("OK", null);
dlgAlert.setCancelable(true);
dlgAlert.create().show();
Jak mam przejść do wyświetlania okna wiadomości w systemie Android?
android
messagebox
Rajkumar Reddy
źródło
źródło
<uses-sdk android:minSdkVersion="9" android:targetSdkVersion="15" />
mają coś wspólnego z tym, dlaczego nie otrzymałem żadnego błędu kompilacji, który sugerujesz.Odpowiedzi:
Myślę, że może być problem polegający na tym, że nie dodano nasłuchiwania kliknięć dla pozytywnego przycisku OK.
dlgAlert.setPositiveButton("Ok", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int which) { //dismiss the dialog } });
źródło
Ponieważ w Twojej sytuacji chcesz powiadomić użytkownika tylko krótką i prostą wiadomością,
Toast
poprawiłoby to komfort użytkowania.Toast.makeText(getApplicationContext(), "Data saved", Toast.LENGTH_LONG).show();
Jeśli masz dłuższą wiadomość, którą chcesz dać czytelnikowi czas na przeczytanie i zrozumienie, powinieneś użyć pliku
DialogFragment
. ( Dokumentacja obecnie zaleca zawijanieAlertDialog
fragmentu zamiast wywoływania go bezpośrednio).Utwórz klasę, która rozszerza
DialogFragment
:public class MyDialogFragment extends DialogFragment { @Override public Dialog onCreateDialog(Bundle savedInstanceState) { // Use the Builder class for convenient dialog construction AlertDialog.Builder builder = new AlertDialog.Builder(getActivity()); builder.setTitle("App Title"); builder.setMessage("This is an alert with no consequence"); builder.setPositiveButton("OK", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int id) { // You don't have to do anything here if you just // want it dismissed when clicked } }); // Create the AlertDialog object and return it return builder.create(); } }
Następnie zadzwoń do niego, gdy potrzebujesz go w swojej działalności:
DialogFragment dialog = new MyDialogFragment(); dialog.show(getSupportFragmentManager(), "MyDialogFragmentTag");
Zobacz też
źródło
Kod kompiluje się dla mnie dobrze. Być może zapomniałeś dodać import:
import android.app.AlertDialog;
W każdym razie, masz dobry tutorial tutaj .
źródło
@Override protected Dialog onCreateDialog(int id) { switch(id) { case 0: { return new AlertDialog.Builder(this) .setMessage("text here") .setPositiveButton("OK", new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface arg0, int arg1) { try { }//end try catch(Exception e) { Toast.makeText(getBaseContext(), "", Toast.LENGTH_LONG).show(); }//end catch }//end onClick() }).create(); }//end case }//end switch return null; }//end onCreateDialog
źródło