Sweet Alert Dialog 201910使用记录
作者:互联网
Sweet Alert Dialog 201910使用记录
PS. 处女作,不喜勿喷。
环境:
android studio 3.5.1
jdk 1.8
build:gradle:3.5.1
- 第一步:添加依赖
implementation 'com.github.f0ris.sweetalert:library:1.5.1'
- 第二步:修改了AndroidManifest.xml
xmlns:tools="http://schemas.android.com/tools"
tools:replace="android:icon,android:theme,android:allowBackup,android:label,android:supportsRtl"
- sync
- 使用
SweetAlertDialog pDialog = new SweetAlertDialog(this, SweetAlertDialog.PROGRESS_TYPE);
pDialog.getProgressHelper().setBarColor(Color.parseColor("#A5DC86"));
pDialog.setTitleText("Loading");
pDialog.setCancelable(false);
pDialog.show();
更多使用,参考官网
参考文档:
https://blog.csdn.net/ljb780830997/article/details/79065576
https://stackoverflow.com/questions/47195517/android-studio-3-0-error-with-sweet-alert-dialog-library
标签:SweetAlertDialog,pDialog,Sweet,library,Alert,com,201910,android,tools 来源: https://blog.csdn.net/qq471208499/article/details/102729125