如何在android中创建自定义进度Dialoge,其中包含图像。 我正在尝试创建一个基础进度对话框,其中包含一个在其中旋转的图像。任何引导都会有所帮助。
答案 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();