android中的自定义进度对话框

时间:2015-07-21 10:41:24

标签: android progressdialog

如何在android中创建自定义进度Dialoge,其中包含图像。 我正在尝试创建一个基础进度对话框,其中包含一个在其中旋转的图像。任何引导都会有所帮助。

2 个答案:

答案 0 :(得分:0)

答案 1 :(得分:-1)

尝试实施https://github.com/afollestad/material-dialogs库!这很简单。您可以创建所需的各种材料对话框。还有一个有用的文档

Material Dialogs 遵循Google Material Design准则。

安装
dependencies {
compile 'com.afollestad:material-dialogs:0.7.6.0'
}

通过

实施
new MaterialDialog.Builder(this)
.title(R.string.progress_dialog)
.content(R.string.please_wait)
.progress(true, 0)
.show();