
Android
环山绕水
这个作者很懒,什么都没留下…
展开
-
RoundProgressStatusBar 自定义带有成功与失败状态的圆形进度控件
RoundProgressStatusBar 自定义带有成功与失败状态的圆形进度控件 如何使用 在工程build.gradle中对应添加下边一行代码 allprojects { repositories { ... maven { url 'https://jitpack.io' } } } 在App build.gradle 中添加依赖 dependencies { implementation 'com.github.wy7498145原创 2020-08-06 16:12:33 · 239 阅读 · 0 评论 -
ProgressBar 自定义线性带文字提示的进度条
ProgressBar 自定义线性带文字提示的进度条 布局属性 <com.mcustom.library.Progressbar android:id="@+id/progressbar" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginLeft="20dp" android:原创 2020-07-09 11:34:44 · 2392 阅读 · 0 评论 -
android studio 总是依赖最新版本的方式
总是依赖最新版本的方式 例如: implementation 'com.github.wy749814530:MultiGraphics:1.0.4' ====> implementation 'com.github.wy749814530:MultiGraphics:latest.release' 只需要将版本号1.0.4 替换为latest.release 就可以总是依赖最新版本了。 PS:推荐直接使用版本号,不太推荐使用“latest.release”这种方式来依赖第三方库。 “latest.原创 2020-06-28 17:55:02 · 2315 阅读 · 0 评论 -
Android SVG 矢量图做主题换肤
Android SVG 矢量图做主题换肤 Step 1. Add the JitPack repository to your build file allprojects { repositories { ... maven { url 'https://jitpack.io' } } } Step 2. Add the dependency dependencies { implementation 'com.github.wy原创 2020-05-27 10:38:28 · 597 阅读 · 0 评论 -
Android面试准备知识图谱
原创 2020-05-27 10:30:29 · 310 阅读 · 0 评论 -
Android 二维码扫描框架 基于Zxing3.3的封装
ZxingQRCode 基于ZXing3.0的二维码与条形码扫码封装Step 1. Add the JitPack repository to your build fileStep 2. Add the dependencyStep 3. ExamplesStep 4. Required permissions Step 1. Add the JitPack repository to your build file Add it in your root build.gradle at the end原创 2020-05-15 14:35:08 · 2410 阅读 · 0 评论