Day3
Time : October 24th,2015 / Author : xiaomeixw
library
1.UI:
TextSurface --- (From elevenetc) : A little animation framework which could help you to show message in a nice looking way. [让TextView动画飞起来].
DraggableView --- (From elevenetc) : Draggable views with rotation and skew/scale effects. [带动画效果拖拽View条目].
BadgeView --- (From elevenetc) : Badge view with animated effect which shows a bitmap or a text. [带动画效果的在徽章中显示图片或者文字].
BGABadgeView-Android --- (From bingoogolapple) : Android badge view copy from the china "twitter" : sina weibo. [模仿新浪微博的Android徽章控件].
android-viewbadger --- (From jgilfelt) : A simple way to "badge" any given Android view at runtime without having to cater for it in layout. [徽章View].
BadgeView --- (From stefanjauker) : An extended TextView that mimics the iOS Springboard 'badges'. It can be overlaid on any other item. [徽章View].
2.Logic:
- AsyncManager --- (From boxme & Tag is AsyncTask) : Android Multithreading Library For Easy Asynchronous Management. [后台异步线程].
![](http://i.imgur.com/0tubENV.png)
// A BackgroundTask object will be returned from this method. Reference it if require.
AsyncManager.runBackgroundTask(new TaskRunnable<Params, Result, Void>() {
@Override
public Result doLongOperation(Params params) throws InterruptedException {
// checkForThreadInterruption();
// Your long operation
return result;
}
// Override this callback if you need to handle the result on the UI thread
@Override
public void callback(Result result) {
// Handle the result from doLongOperation()
}
}.setParams(params));
3.Architecture:
MvpCleanArchitecture --- (From glomadrian) : A sample project using Clean architecture and MVP in Android. [探索MVP架构].
androidmvp --- (From antoniolg) : MVP Android Example used to explain how to use this pattern in our Android apps. [MVP架构的一个Simple范例].
UpcomingMoviesMVP --- (From jlmd) : Sample project of MVP and Material Design using as repository a list of upcoming movies. [MVP架构 & Material Design的一个电影Simple范例].
FastAndroid --- (From huntermr) : A Rapid development framework With MVP & some famous libraries . [融入了MVP模式,集成了多个开源项目后,进行整合形成的Android快速开发框架].
article
cA small leak will sink a great ship --- (From Author Piwai blog http://www.piwai.info/) --- [No Source]
This post started as an internal email thread when I was building LeakCanary. I found a strange memory leak and started digging in order to figure out what was happening. TL;DR: Prior to Android Lollipop, alert dialogs may cause memory leaks in your Android apps. [Translation:Square工程师 : 一个内存泄漏引发的悲惨结果].
Chinese Translation Address : Thanks To android-tech-frontier
A super cool man in Android , This is his resume website : http://www.piwai.info/cv.html#/welcome
website
https://medium.com/android-news --- (Build By [Evan Williams,2012](https://en.wikipedia.org/wiki/Medium(publishingplatform))) : Medium is a blog-publishing platform.The platform has evolved into a hybrid of non-professional contributions and professional, paid contributions. [基于主题的协作型媒体Blog文章消费写作平台].