Awesome
最火Android开源项目MaterialDialog使用
开源地址:https://github.com/open-android/MaterialDialog
PS:如果觉得文章太长,你也可观看该课程的视频,亲,里面还有高清,无码的福利喔
运行效果
使用步骤
1. 在project的build.gradle添加如下代码(如下图)
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
2. 在Module的build.gradle添加依赖
compile 'com.github.open-android:MaterailDialog:v1.0.2'
3. 复制如下代码到xml
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="showDialog"
android:text="点我弹出对话框"/>
###4 . 复制如下代码到Activity
public void showDialog(View view){
new MaterialDialog.Builder(this)
.title("这是标题")
.content("这是描述的内容")
.positiveText("确定")
.negativeText("取消")
.show();
}
细节注意:
-
支持链式调用
-
基本用法与官方的AlertDialog 基本相似
-
取消对话框,可以使用 dismiss方法
欢迎关注微信公众号