Android Learning Resources: GitHub File Free Download

Android学习资源大全 整理了一些 Android 的博客链接、学习资源网站。站在巨人的肩膀上,会看得更远。整理这一份资源也方便更多的Android开发者能享受到技术分享的力量。首先,在这里要感谢所有开源项目的作者,感谢Trinea,CodeKK,张明云,胡凯等等大大无私的技术分享,感谢所有乐于分享学习经验的人。最后,若有侵权,请联系本人,本人将及时删除侵权内容。 目录 1. 官方学习资源 2. 值得 Android 开发者阅读系列 3. UI/自定义 View/动画 4. Android 性能优化 5. Android 单元测试系列 …

Read more

WheelView: GitHub File Free Download

WheelView 最后打个广告哈,阿里巴巴,杭州招技术,支持电话视频面试,有兴趣的同学戳这里:https://github.com/wangjiegulu/jobs How to use layout: <com.wangjie.wheelview.WheelView android:id=”@+id/main_wv” android:layout_width=”match_parent” android:layout_height=”wrap_content” /> Activity: WheelView wva = (WheelView) findViewById(R.id.main_wv); wva.setOffset(1); wva.setItems(Arrays.asList(PLANETS)); wva.setOnWheelViewListener(new …

Read more

MaterialTextField: GitHub File Free Download

MaterialTextField A different beautiful Floating Edit Text Usage Surround your EditText by a MaterialTextField <com.github.florent37.materialtextfield.MaterialTextField android:layout_width=”300dp” android:layout_height=”wrap_content” app:mtf_labelColor=”#666″ app:mtf_image=”@drawable/ic_mail_grey600_24dp” > …

Read more