編輯:關於android開發

下載地址:https://github.com/recruit-lifestyle/WaveSwipeRefreshLayout
直接把代碼復制到你的項目於即可使用:

使用:
在xml中:
<jp.co.recruit_lifestyle.android.widget.WaveSwipeRefreshLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/main_swipe">
<ListView
android:id="@+id/main_list"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</jp.co.recruit_lifestyle.android.widget.WaveSwipeRefreshLayout>
JAVA代碼:
mWaveSwipeRefreshLayout = (WaveSwipeRefreshLayout) findViewById(R.id.main_swipe);
mWaveSwipeRefreshLayout.setOnRefreshListener(new WaveSwipeRefreshLayout.OnRefreshListener() {
@Override public void onRefresh() {
// Do work to refresh the list here.
new Task().execute();
}
});
private class Task extends AsyncTask<Void, Void, String[]> {
...
@Override protected void onPostExecute(String[] result) {
// Call setRefreshing(false) when the list has been refreshed.
mWaveSwipeRefreshLayout.setRefreshing(false);
super.onPostExecute(result);
}
}
Android開發技巧之Camera拍照功能
Android開發技巧之Camera拍照功能 本篇是我對開發項目的拍照功能過程中,對Camera拍照使用的總結。由於camera2是在api level 21(5.0
Android開發學習之路--網絡編程之xml、json
Android開發學習之路--網絡編程之xml、json 一般網絡數據通過http來get,post,那麼其中的數據不可能雜亂無章,比如我要post一段數據,肯定是要
存儲鏈路問題導致的RAC異常
存儲鏈路問題導致的RAC異常昨天,有人加我,說遇到了RAC問題。 環境是oracle 11.0.2.4,2節點。情況如下,CRSD宕了,集群不會自動切換。並且出現了好幾次
android實現文字漸變效果和歌詞進度的效果
android實現文字漸變效果和歌詞進度的效果 要用TextView使用漸變色,那我們就必須要了解LinearGradient(線性漸變)的用法。 LinearGra