Android Studio 第七十二期 - Android 呼吸的View

代码已经整理好,效果如下图:

地址:https://github.com/geeklx/myapplication2018/tree/master/p015_view_huxi

原文地址:http://blog.51cto.com/liangxiao/2150522

时间: 2024-10-18 22:25:05

Android Studio 第七十二期 - Android 呼吸的View的相关文章

Android Studio 第六十二期 - Android框架

开发一款任意APP的框架搭建以及类库使用,详见:https://github.com/geeklx/APPkuangjia 原文地址:http://blog.51cto.com/liangxiao/2130888

Android Studio 第七十一期 - Android 系统声音控制

代码已经整理好,效果如下图: 地址:https://github.com/geeklx/myapplication2018/tree/master/p014_systemvoices 原文地址:http://blog.51cto.com/liangxiao/2150520

Android Studio 第七十三期 - Android Glide4.7.3用法大全支持九宫格

代码已经整理好,效果如下图: 地址:https://github.com/geeklx/myapplication2018/tree/master/p016_glide47_quan 原文地址:http://blog.51cto.com/liangxiao/2150525

Android Studio 第七十期 - Android下载图片安装apk 获取权限

代码已经整理好,效果如下图: 地址:https://github.com/geeklx/myapplication2018/tree/master/p013_updatemanagerpermission 原文地址:http://blog.51cto.com/liangxiao/2150519

Android Studio 第八十二期 - Android Glide3.8.0用法大全支持九宫格

代码已经整理好,效果如下图: 地址:https://github.com/geeklx/myapplication2018/tree/master/p016_glide37_quan 原文地址:http://blog.51cto.com/liangxiao/2156107

Android Studio第三十二期 - RecycleView不同布局适配器写法

新需求,如图,代码已经整理好,效果如下图: 单个: 多个: demo效果图: 地址:https://github.com/geeklx/MyApplication/tree/master/p010_recycleviewall/src/main/java/com/example/p010_recycleviewall/recycleviewdifferentitem

Android Studio 第五十二期 - 自定义WheelPicker

代码已经整理好,效果如下图: 地址:https://github.com/geeklx/MyApplication/tree/master/p038_wheelpicker

Android Studio - 第四十二期 几个经常用到的字符串的截取

string str="123abc456"; int i=3; 1 取字符串的前i个字符 str=str.Substring(0,i); // or  str=str.Remove(i,str.Length-i); 2 去掉字符串的前i个字符: str=str.Remove(0,i);  // or str=str.Substring(i); 3 从右边开始取i个字符: str=str.Substring(str.Length-i); // or str=str.Remove(0,s

Android Studio 第七十六期 - Android webview长按识别二维码

代码已经整理好,效果如下图: 地址:https://github.com/geeklx/myapplication2018/tree/master/p019_shibie_qrcode 原文地址:http://blog.51cto.com/liangxiao/2150604