android
文章平均质量分 71
睡着的鱼
不管发生任何事情都是一种经历 ,让你的生活不至于一片空白!学习,分享……
展开
-
Android SDK Tools Platform-tools Build-tools
(1)Android SDK (Android SDK主安装包,包含SDK Manager、AVD Manager、工具包tools,释放后的根文件夹为android-sdk-windows):revision 22.2.1http://dl.google.com/android/android-sdk_r22.2.1-windows.ziphttp://dl.google.com/andr原创 2016-02-19 10:45:33 · 869 阅读 · 0 评论 -
20个很棒的android开源项目帮助你提升开发技能
对程序员来说,最好的学习也是阅读,多看别人优秀的代码,加以总结学习应用。如果你想成为一个更好的开发者,就必须阅读大量的代码。书本,博客,论坛在一定程度上都是比较好的,但是比不上一些功能完整详细的开源项目。所以你要做的就是喝着咖啡看代码。O(∩_∩)O哈哈~下面列出来一些比较好的开源项目,每个项目都标注有难易程度。希望可以帮到你~LeafPic(Github | P转载 2017-02-22 13:46:43 · 7550 阅读 · 4 评论 -
2017年,你需要尝试的25个Android第三方库
Lottie这是一个动画库。通过Adobe After Effects做出动画效果,然后通过Bodymovin(AE的插件)导出JSON数据,然后通过该库生成原生动画效果。在Google Play Store上可以下载demo。该项目在Github上已经由超过8000个star。猴赛雷~~ ***Airbnb***公司出品。效果图如下:Github地址:h转载 2017-02-22 13:44:40 · 634 阅读 · 0 评论 -
PopupWindow的使用
布局<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="match_parent"android:layout_height="match_parent"android:backgr原创 2016-07-01 14:01:35 · 316 阅读 · 0 评论 -
在dialog中获取Edittext的值
首先写了一个包含edittext的dialog布局: <?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/rl_list_library_dialog" android:la原创 2016-06-08 17:21:33 · 4125 阅读 · 0 评论 -
json数组解析(键名[0])
最近做项目用到了数组解析: 以下是两种方式,一种是注释部分的,一种是上面没注释部分的。private void parseEducationData(String res) { Type listType = new TypeToken<LinkedList<EducationDatas>>(){}.getType(); Gson gson = new Gson()原创 2016-05-17 23:37:25 · 2848 阅读 · 0 评论 -
如何从activity页面跳转到fragment页面?
如何从activity页面跳转到fragment页面?在startactivity的地方,对intent加入一个参数,例如,intert.putExtra(“fragid”,1);然后再你的fragment的主activity中的oncreate或者Onresume函数中获得这个id,例如: int id = intert.getIntegerExtra(“fragid”,-1); 然后根据原创 2016-05-17 23:30:37 · 2211 阅读 · 0 评论 -
据说年薪30万的Android程序员必须知道的帖子
Android中国研发精英01群:207203815转自:https://github.com/Trinea/android-open-projectAndroid开源项目第一篇——个性化控件(View)篇 包括ListView、ActionBar、Menu、ViewPager、Gallery、GridView、ImageView、ProgressBar、TextView、其他转载 2016-05-17 23:04:39 · 966 阅读 · 0 评论 -
160多个android开源代码汇总
目录(?)[-]第一部分 个性化控件View一ListView二ActionBar三Menu四ViewPager Gallery五GridView六ImageView七ProgressBar八TextView九ScrollView十TimeView十一TipView十二FlipView十三ColorPickView十四GraphView十五UI Style十六其他第二部分 工具转载 2016-05-30 11:11:33 · 904 阅读 · 0 评论 -
非常好用的android 特效
各种帮助类汇总:https://github.com/Blankj/AndroidUtilCode常用的 iOS 风格 dialog 和 meterial design 风格的 dialog:https://github.com/glassLake/DialogUtils提高 Android 应用的颜值,酷炫 UI 组件汇总:https://github.com/madon转载 2017-07-22 18:05:51 · 3372 阅读 · 0 评论