如何使用弹出窗口

时间:2011-02-28 11:41:25

标签: android

我想显示一个弹出窗口,其中包含如下所示的各种项目: -

Path:/mnt/sdcard/absar
Size:100mb
Type:File

我该怎么做?

2 个答案:

答案 0 :(得分:2)

所以,如果你想静态生成弹出消息,而不仅仅是使用或调用这个方法,你想要弹出。

private void displayDialog(string size,String type){
        AlertDialog.Builder builder = new AlertDialog.Builder(Classname);
        builder.setMessage("Path:"+"/mnt/sdcard/absa" + "\nsize:"+size+ "\ntype:"+type+  )
        .setCancelable(false)
        .setPositiveButton("ok", new DialogInterface.OnClickListener() {
            public void onClick(DialogInterface dialog, int id) {

            }
        })
        .setNegativeButton("cancel", new DialogInterface.OnClickListener() {
            public void onClick(DialogInterface dialog, int id) {
                dialog.cancel();                        
            }
        });
        AlertDialog alert = builder.create();   
        alert.setTitle(sethed);
        alert.show();

答案 1 :(得分:0)

请查看toast

的文档