Android 进度对话框 ProgressDialog

    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        button = (Button) findViewById(R.id.button);
        button.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {
                // TODO Auto-generated method stub

                // ProgressDialog.show(MainActivity.this, "提示", "正在加载,请稍后...");
                ProgressDialog dialog = new ProgressDialog(MainActivity.this);
                dialog.setTitle("提示");
                dialog.setMessage("正在加载,请稍后...");
                dialog.show();
            }
        });
    }

image

posted @ 2019-11-05 13:09  thomas_blog  阅读(3225)  评论(0编辑  收藏  举报