public void showAlertDialog(Context context, String title, String message, Boolean status) {
AlertDialog alertDialog = new AlertDialog.Builder(context).create();
// Setting Dialog Title
alertDialog.setTitle(title);
// Setting Dialog Message
alertDialog.setMessage(message);
if(status != null)
// Setting alert dialog icon
alertDialog.setIcon((status) ? R.drawable.success : R.drawable.fail);
-3
A
回答
1
0
沒有LogCat或類似的東西很難找出你的錯誤。你可以看到使用AlertDialog方式:
AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(
context);
// set title
alertDialogBuilder.setTitle("Your Title");
// set dialog message
alertDialogBuilder
.setMessage("Click yes to exit!")
.setCancelable(false)
.setPositiveButton("Yes",new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog,int id) {
// if this button is clicked, close
// current activity
MainActivity.this.finish();
}
})
.setNegativeButton("No",new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog,int id) {
// if this button is clicked, just close
// the dialog box and do nothing
dialog.cancel();
}
});
// create alert dialog
AlertDialog alertDialog = alertDialogBuilder.create();
// show it
alertDialog.show();
這個例子告訴如何在Android上使用AlertDialog: http://www.mkyong.com/android/android-alert-dialog-example/
相關問題
- 1. 爲什麼我不工作
- 2. 爲什麼我不工作
- 3. 爲什麼alertDialog不能在android應用程序中工作?
- 4. simplecart.js爲什麼不能爲我工作?
- 5. 爲什麼不jsTree open_all()爲我工作?
- 6. 爲什麼不鎖!爲我工作?
- 7. Modernizr爲什麼不爲我工作?
- 8. cv.findChessboardCorners爲什麼不能爲我工作?
- 9. 爲什麼nerdcommenter不爲我工作
- 10. SSI爲什麼不爲我工作?
- 11. 爲什麼我的課不會工作?
- 12. 爲什麼我的foreach不會工作?
- 13. 爲什麼我的UILongPressGestureRecognizer不工作?
- 14. 爲什麼我的代碼不工作?
- 15. 爲什麼我的代碼不工作?
- 16. 爲什麼我的hg不能工作?
- 17. 爲什麼我的路線不工作?
- 18. 爲什麼我的ReportViewer不工作?
- 19. 爲什麼我的SQL不能工作?
- 20. 爲什麼我的SSI不工作?
- 21. 爲什麼不是我的工作?
- 22. 爲什麼我的重繪不工作?
- 23. 爲什麼我的urls.py不工作?
- 24. 爲什麼我的UIButton不能工作?
- 25. 爲什麼我的android listview不工作?
- 26. 爲什麼我的功能不工作
- 27. 爲什麼我的jQuery不工作?
- 28. 爲什麼我的jQuery fadeOut不工作?
- 29. 爲什麼我的錨不工作了
- 30. 爲什麼我的jPlayer不工作
你可以發佈你所得到的錯誤?只需複製粘貼LogCat中的錯誤即可。 –
你有什麼「錯誤」。編輯你的問題。 –
發佈錯誤... !!!!!!!它不工作還是你得到一個例外..? –