Android Signing Automatic Config
Config keyStore and key in a xml and sign your apk easily.
Usage
Default config file is ~/.android_key_store.xml, sample config as:
<keystores>
<ke...
A circular progressbar with sweeping angle
Github
Usage
In build.gradle config dependency.
compile 'org.quanqi:CircularProgress:1.0.2'
In laout xml
<org.quanqi.circularprogress.CircularP...
MVP (Model View Presenter) pattern is a derivative from the well known MVC (Model View Controller), which for a while now is gaining importance in the development of Android applications. There are...
被观察者
public class Observable<T> {
List<Observer> observers = new ArrayList<Observer>();
boolean changed = false;
/**
* Adds the specified observer to the li...
Volley
这是一篇在团队内部分享演示的讲稿的整理.
Volley is a library that makes networking for Android apps easier and most importantly, faster.
Volley 的使用场景
大量的信息流, 大量的图片.
从网络上读取文本, 属性, 图片, 然后把他们放到 UI 上去....