使用活动显示一个对话框

作者:追风剑情 发布于:2015-7-4 13:49 分类:Android

您经常需要显示一个对话框窗口,以便从用户那里得到确认。这时,可以重写在Activity基类中定义的受保护的onCreateDialog()方法来显示一个对话框窗口。

  1. package com.example.androidtest;
  2.  
  3. import android.app.Activity;
  4. import android.app.AlertDialog;
  5. import android.app.AlertDialog.Builder;
  6. import android.app.Dialog;
  7. import android.content.DialogInterface;
  8. import android.os.Bundle;
  9. import android.view.View;
  10. import android.view.View.OnClickListener;
  11. import android.view.Window;
  12. import android.widget.Button;
  13. import android.widget.Toast;
  14.  
  15. public class DialogActivity extends Activity implements OnClickListener {
  16.  
  17. CharSequence[] items = {"Google", "Apple", "Microsoft"};
  18. boolean[] itemsChecked = new boolean[items.length];
  19. @Override
  20. protected void onCreate(Bundle savedInstanceState) {
  21. super.onCreate(savedInstanceState);
  22. setContentView(R.layout.activity_dialog);
  23. Button btn = (Button)this.findViewById(R.id.button1);
  24. btn.setOnClickListener(this);
  25. }
  26. public void onClick(View v)
  27. {
  28. showDialog(0);
  29. }
  30. @Override
  31. protected Dialog onCreateDialog(int id)
  32. {
  33. switch(id)
  34. {
  35. case 0:
  36. Builder builder = new AlertDialog.Builder(this);
  37. builder.setIcon(R.drawable.ic_launcher);
  38. builder.setTitle("title");
  39. builder.setPositiveButton("OK", new DialogInterface.OnClickListener() {
  40. @Override
  41. public void onClick(DialogInterface dialog, int which) {
  42. //这里要用getBaseContext()来获取DialogActivity的上下文对象。
  43. Toast.makeText(getBaseContext(), "OK clicked!", Toast.LENGTH_SHORT).show();
  44. }
  45. });
  46. builder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
  47. @Override
  48. public void onClick(DialogInterface dialog, int which) {
  49. Toast.makeText(getBaseContext(), "Cancel clicked!", Toast.LENGTH_SHORT).show();
  50. }
  51. });
  52. builder.setMultiChoiceItems(items, itemsChecked, new DialogInterface.OnMultiChoiceClickListener() {
  53. @Override
  54. public void onClick(DialogInterface dialog, int which, boolean isChecked) {
  55. Toast.makeText(getBaseContext(), items[which] + (isChecked ? " checked!" : " unchecked!"), Toast.LENGTH_SHORT).show();
  56. }
  57. });
  58. return builder.create();
  59. }
  60. return null;
  61. }
  62. }

运行效果

Alert1.png

标签: Android

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号