2015年11月25日 星期三

延遲執行的好方法(Android的一百種奇技淫巧)

new Handler().postDelayed(new Runnable() {
    @Override
    public void run() {
        Log.i("code", "Using in Delay");
    }
}, 10000);

// In Java 8
new Handler().postDelayed(() -> {
        Log.i("code", "Using in Delay");
    }
}, 10000);

2015年11月17日 星期二

Android NestedScrolling

http://www.race604.com/android-nested-scrolling/

先記錄

https://github.com/nuptboyzhb/SuperSwipeRefreshLayout

http://tech.meituan.com/mt-apk-adaptation.html