栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 移动开发 > Android

8种android 对话框(Dialog)使用方法详解

Android 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

8种android 对话框(Dialog)使用方法详解

本文汇总了android 8种对话框(Dialog)使用方法,分享给大家供大家参考,具体内容如下

1.写在前面

Android提供了丰富的Dialog函数,本文介绍最常用的8种对话框的使用方法,包括普通(包含提示消息和按钮)、列表、单选、多选、等待、进度条、编辑、自定义等多种形式,将在第2部分介绍。
有时,我们希望在对话框创建或关闭时完成一些特定的功能,这需要复写Dialog的create()、show()、dismiss()等方法,将在第3部分介绍。

2.代码示例

2.1 普通Dialog(图1与图2)

2个按钮

public class MainActivity extends Activity {
 
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    Button buttonNormal = (Button) findViewById(R.id.button_normal);
    buttonNormal.setonClickListener(new View.onClickListener() {
      @Override
      public void onClick(View v) {
 showNormalDialog();
      }
    });
  }
   
  private void showNormalDialog(){
    
    final alertDialog.Builder normalDialog = 
      new alertDialog.Builder(MainActivity.this);
    normalDialog.setIcon(R.drawable.icon_dialog);
    normalDialog.setTitle("我是一个普通Dialog")
    normalDialog.setMessage("你要点击哪一个按钮呢?");
    normalDialog.setPositiveButton("确定", 
      new DialogInterface.onClickListener() {
      @Override
      public void onClick(DialogInterface dialog, int which) {
 //...To-do
      }
    });
    normalDialog.setNegativeButton("关闭", 
      new DialogInterface.onClickListener() {
      @Override
      public void onClick(DialogInterface dialog, int which) {
 //...To-do
      }
    });
    // 显示
    normalDialog.show();
  }
}

3个按钮


private void showMultiBtnDialog(){
  alertDialog.Builder normalDialog = 
    new alertDialog.Builder(MainActivity.this);
  normalDialog.setIcon(R.drawable.icon_dialog);
  normalDialog.setTitle("我是一个普通Dialog").setMessage("你要点击哪一个按钮呢?");
  normalDialog.setPositiveButton("按钮1", 
    new DialogInterface.onClickListener() {
    @Override
    public void onClick(DialogInterface dialog, int which) {
      // ...To-do
    }
  });
  normalDialog.setNeutralButton("按钮2", 
    new DialogInterface.onClickListener() {
    @Override
    public void onClick(DialogInterface dialog, int which) {
      // ...To-do
    }
  });
  normalDialog.setNegativeButton("按钮3", new DialogInterface.onClickListener() {
    @Override
    public void onClick(DialogInterface dialog, int which) {
      // ...To-do
    }
  });
  // 创建实例并显示
  normalDialog.show();
}

2.2 列表Dialog(图3)

private void showListDialog() {
  final String[] items = { "我是1","我是2","我是3","我是4" };
  alertDialog.Builder listDialog = 
    new alertDialog.Builder(MainActivity.this);
  listDialog.setTitle("我是一个列表Dialog");
  listDialog.setItems(items, new DialogInterface.onClickListener() {
    @Override
    public void onClick(DialogInterface dialog, int which) {
      // which 下标从0开始
      // ...To-do
      Toast.makeText(MainActivity.this, 
 "你点击了" + items[which], 
 Toast.LENGTH_SHORT).show();
    }
  });
  listDialog.show();
}

2.3 单选Dialog(图4)

int yourChoice;
private void showSingleChoiceDialog(){
  final String[] items = { "我是1","我是2","我是3","我是4" };
  yourChoice = -1;
  alertDialog.Builder singleChoiceDialog = 
    new alertDialog.Builder(MainActivity.this);
  singleChoiceDialog.setTitle("我是一个单选Dialog");
  // 第二个参数是默认选项,此处设置为0
  singleChoiceDialog.setSingleChoiceItems(items, 0, 
    new DialogInterface.onClickListener() {
    @Override
    public void onClick(DialogInterface dialog, int which) {
      yourChoice = which;
    }
  });
  singleChoiceDialog.setPositiveButton("确定", 
    new DialogInterface.onClickListener() {
    @Override
    public void onClick(DialogInterface dialog, int which) {
      if (yourChoice != -1) {
 Toast.makeText(MainActivity.this, 
 "你选择了" + items[yourChoice], 
 Toast.LENGTH_SHORT).show();
      }
    }
  });
  singleChoiceDialog.show();
}

2.4 多选Dialog(图5)

ArrayList yourChoices = new ArrayList<>();
private void showMultiChoiceDialog() {
  final String[] items = { "我是1","我是2","我是3","我是4" };
  // 设置默认选中的选项,全为false默认均未选中
  final boolean initChoiceSets[]={false,false,false,false};
  yourChoices.clear();
  alertDialog.Builder multiChoiceDialog = 
    new alertDialog.Builder(MainActivity.this);
  multiChoiceDialog.setTitle("我是一个多选Dialog");
  multiChoiceDialog.setMultiChoiceItems(items, initChoiceSets,
    new DialogInterface.onMultiChoiceClickListener() {
    @Override
    public void onClick(DialogInterface dialog, int which,
      boolean isChecked) {
      if (isChecked) {
 yourChoices.add(which);
      } else {
 yourChoices.remove(which);
      }
    }
  });
  multiChoiceDialog.setPositiveButton("确定", 
    new DialogInterface.onClickListener() {
    @Override
    public void onClick(DialogInterface dialog, int which) {
      int size = yourChoices.size();
      String str = "";
      for (int i = 0; i < size; i++) {
 str += items[yourChoices.get(i)] + " ";
      }
      Toast.makeText(MainActivity.this, 
 "你选中了" + str, 
 Toast.LENGTH_SHORT).show();
    }
  });
  multiChoiceDialog.show();
}

2.5 等待Dialog(图6)

private void showWaitingDialog() {
  
  ProgressDialog waitingDialog= 
    new ProgressDialog(MainActivity.this);
  waitingDialog.setTitle("我是一个等待Dialog");
  waitingDialog.setMessage("等待中...");
  waitingDialog.setIndeterminate(true);
  waitingDialog.setCancelable(false);
  waitingDialog.show();
}

2.6 进度条Dialog(图7)

private void showProgressDialog() {
  
  final int MAX_PROGRESS = 100;
  final ProgressDialog progressDialog = 
    new ProgressDialog(MainActivity.this);
  progressDialog.setProgress(0);
  progressDialog.setTitle("我是一个进度条Dialog");
  progressDialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
  progressDialog.setMax(MAX_PROGRESS);
  progressDialog.show();
  
  new Thread(new Runnable() {
    @Override
    public void run() {
      int progress= 0;
      while (progress < MAX_PROGRESS){
 try {
   Thread.sleep(100);
   progress++;
   progressDialog.setProgress(progress);
 } catch (InterruptedException e){
   e.printStackTrace();
 }
      }
      // 进度达到最大值后,窗口消失
      progressDialog.cancel();
    }
  }).start();
}

2.7 编辑Dialog(图8)

private void showInputDialog() {
  
  final EditText editText = new EditText(MainActivity.this);
  alertDialog.Builder inputDialog = 
    new alertDialog.Builder(MainActivity.this);
  inputDialog.setTitle("我是一个输入Dialog").setView(editText);
  inputDialog.setPositiveButton("确定", 
    new DialogInterface.onClickListener() {
    @Override
    public void onClick(DialogInterface dialog, int which) {
      Toast.makeText(MainActivity.this,
      editText.getText().toString(), 
      Toast.LENGTH_SHORT).show();
    }
  }).show();
}

2.8 自定义Dialog(图9)




  


private void showCustomizeDialog() {
  
  alertDialog.Builder customizeDialog = 
    new alertDialog.Builder(MainActivity.this);
  final View dialogView = LayoutInflater.from(MainActivity.this)
    .inflate(R.layout.dialog_customize,null);
  customizeDialog.setTitle("我是一个自定义Dialog");
  customizeDialog.setView(dialogView);
  customizeDialog.setPositiveButton("确定",
    new DialogInterface.onClickListener() {
    @Override
    public void onClick(DialogInterface dialog, int which) {
      // 获取EditView中的输入内容
      EditText edit_text = 
 (EditText) dialogView.findViewById(R.id.edit_text);
      Toast.makeText(MainActivity.this,
 edit_text.getText().toString(),
 Toast.LENGTH_SHORT).show();
    }
  });
  customizeDialog.show();
}

3.复写回调函数


private void showListDialog() {
  final String[] items = { "我是1","我是2","我是3","我是4" };
  alertDialog.Builder listDialog = 
    new alertDialog.Builder(MainActivity.this){
     
    @Override
    public alertDialog create() {
      items[0] = "我是No.1";
      return super.create();
    }
 
    @Override
    public alertDialog show() {
      items[1] = "我是No.2";
      return super.show();
    }
  };
  listDialog.setTitle("我是一个列表Dialog");
  listDialog.setItems(items, new DialogInterface.onClickListener() {
    @Override
    public void onClick(DialogInterface dialog, int which) {
      // ...To-do
    }
  });
  
  listDialog.setonDismissListener(new DialogInterface.onDismissListener() {
    public void onDismiss(DialogInterface dialog) {
      Toast.makeText(getApplicationContext(),
 "Dialog被销毁了", 
 Toast.LENGTH_SHORT).show();
    }
  });
  listDialog.show();
}

以上就是本文的全部内容,希望对大家的学习有所帮助。

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/163014.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号