
组件Demo
文章平均质量分 64
LIENLIN
we want a fly car, but we got 140 characters
展开
-
android振动器
/*** 启动振动器方法* Vibrator振动器对象*/private void vibrate(){Vibrator vibrator = (Vibrator) getSystemService(Service.VIBRATOR_SERVICE);vibrator.vibrate(1000);//震动一秒// vibrator.vibrate(new long[原创 2016-05-15 22:10:34 · 402 阅读 · 0 评论 -
android跳转应用市场进行版本更新
1.跳转应用市场列表 Intent intent=new Intent("android.intent.action.MAIN");intent.addCategory("android.intent.category.APP_MARKET");intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);startActivity(intent...原创 2018-02-22 17:43:00 · 3487 阅读 · 0 评论 -
android项目中的jar包总结
1. compile 'com.orhanobut:logger:1.15' Android Studio最简单使用的log神器2. compile 'com.github.bumptech.glide:glide:3.7.0' 基本可以load任何可以拿到的媒体资源 (参考:http://blog.youkuaiyun.com/shangmingchao/article原创 2017-04-06 11:31:59 · 700 阅读 · 0 评论 -
Android开源库集合
那些年收藏的Android开源库集合(UI效果)那些年收藏的Android开源库集合(工具)RecycleView:RecycleView功能增强 https://github.com/Malinskiy/SuperRecyclerViewRecycleView功能增强(拖拽,滑动删除,折叠)https://github.com/h6ah4i/a原创 2017-04-10 11:35:17 · 2189 阅读 · 0 评论 -
Android 数字标记
Android 数字标记## viewbadger是github上的一个开源控件,能够以一个小徽章的样式附着在某个view上,通常用于显示未读消息数,典型的如微信、QQ、微博等,下图为项目主页给出的样式图,可见还是能满足各种需求的 viewbadger继承自textview,使用起来很简单,项目主页给出的Sample就四行:ImageView iv = (ImageView)findViewByI原创 2017-02-17 18:05:39 · 554 阅读 · 0 评论 -
apk瘦身与加固
#apk瘦身#1. 开启minifyEnables(相当于proguard)设为true======================================1. 混淆(见视频)2. 删除无用的类和无用的方法3. 进行代码的压缩buildTypes { debug { minifyEnabled true原创 2016-11-16 23:35:56 · 660 阅读 · 0 评论 -
最接近原生APP体验的高性能前端框架
H5实现的最接近原生的HTML小控件原创 2016-10-19 23:59:11 · 1436 阅读 · 0 评论 -
利用xUtils下载并安装apk
/** * xUtils下载并安装apk */ private void enterdownloa() { String target=""; tv_download.setVisibility(View.VISIBLE);//设置为显示状态 //判断是否加载sd卡 if (Environme原创 2016-05-16 13:29:13 · 1224 阅读 · 0 评论 -
绘制带指示器的ProgressBar
1.自动以viewpackage com.example.com.test;import android.graphics.Bitmap;import android.graphics.BitmapFactory;import android.view.View;import android.annotation.SuppressLint;import android.content....原创 2018-04-03 01:13:48 · 706 阅读 · 0 评论