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

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

地址:https://github.com/geeklx/MyApplication/tree/master/p038_wheelpicker

时间: 2024-11-23 19:46:16

Android Studio 第五十二期 - 自定义WheelPicker的相关文章

Android Studio 第五十一期 - 自定义RecycleView Gallery

代码已经整理好,效果如下图:(支持Verical Horizontal 支持自定义放大位置 支持滚动速度) 图片1: 图片2: 地址: https://github.com/geeklx/MyApplication/tree/master/p010_recycleviewall/src/main/java/com/shining/p010_recycleviewall/recycleviewgalleryhorizontal

Android Studio 第五十三期 - 自定义EditText密码键盘

代码已经整理好,效果如下图: code:         //设置输入为密码模式         inputETP1.setInputType(InputType.TYPE_CLASS_NUMBER | EditorInfo.TYPE_NUMBER_VARIATION_PASSWORD);         inputETP1.setDrawableRightListener(new EditTextPassword.DrawableRightListener() {             @O

Android Studio 第五十六期 - Android之系统设置选项的包名

以com.android.settings开头的形式: com.android.settings.Settings 手机系统设置 com.android.settings.WirelessSettings 无线和网络设置 com.android.settings.AccessibilitySettings 辅助功能设置 com.android.settings.ActivityPicker 选择活动 com.android.settings.ApnSettings APN设置 com.andro

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

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

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屏幕亮度与休眠

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

Android Studio 第六十二期 - Android框架

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

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

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

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

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