編輯:Android開發教程
本人使用 github 現成封裝 modules rxretrofitlibrary
一步步封裝 移步 http://blog.csdn.net/wzgiceman/article/details/51939574
專欄 移步 http://blog.csdn.net/column/details/13297.html
該博主 三個 版本的 gitbub 成果:
https://github.com/wzgiceman/RxjavaRetrofitDemo-string-master
https://github.com/wzgiceman/RxjavaRetrofitDemo-master
https://github.com/wzgiceman/Rx-Retrofit
本人使用 RxjavaRetrofitDemo-string-master modules
該 網絡請求 包含 緩存功能,包含 重試功能
1.測試 http://www.iteye.com/blogs
public class IteyeBlogsApi extends BaseApi { public IteyeBlogsApi(){ setBaseUrl("http://www.iteye.com/"); } @Override public Observable getObservable(Retrofit retrofit) { IteyeGetBlogsService api= retrofit.create(IteyeGetBlogsService.class); return api.getAllBlogs(); } }
public interface IteyeGetBlogsService { @GET("blogs") Observable<String> getAllBlogs(); }
myApi = new IteyeBlogsApi();
manager = new HttpManager(this, this);
case R.id.btn_rx_text_iteye: Log.i("baoyou","myApi ===== start"); manager.doHttpDeal(myApi); break;
結果 測試
2.測試 一個 本地rest 服務
public interface LocalUserRestService { @GET("user/list") Observable<String> getAllUsers(); }
public class LocalUserRestApi extends BaseApi { public LocalUserRestApi(){ setBaseUrl("http://192.168.50.61:8081/rest/rest/"); } @Override public Observable getObservable(Retrofit retrofit) { LocalUserRestService api= retrofit.create(LocalUserRestService.class); return api.getAllUsers(); } }
Log.i("baoyou","userRestApi ===== new start"); userRestApi = new LocalUserRestApi(); Log.i("baoyou","userRestApi ===== new start");
@Override public void onClick(View v) { switch (v.getId()) { case R.id.btn_rx_text_rest_user: Log.i("baoyou","userRestApi ===== start"); manager.doHttpDeal(userRestApi); Log.i("baoyou","userRestApi ===== end"); break;
在興趣的驅動下,寫一個免費
的東西,有欣喜,也還有汗水,希望你喜歡我的作品,同時也能支持一下。 當然,有錢捧個錢場(支持支付寶和微信捐助,加入it技術扣扣群),沒錢捧個人場,謝謝各位。
謝謝您的贊助,我會做的更好!
Gallery 是Android官方提供的一個View容器類,繼承於AbsSpinner類,用於實現頁面滑動效果。從上面的繼承關系可 以看出,AbsSpinner類繼承自
AndroidAPP頂部導航欄Tab點擊和左右滑動實現切換界面 APP市場中大多數資訊App都有導航菜單,導航菜單是一組標簽的集合,在新聞APP中,每個標簽
Gallery組件主要用於橫向顯示圖像列表,不過按常規做法。Gallery組件只能有限地顯示指定的圖像。也就是說,如果為Gallery組件指定了10張圖像,那麼當Gall
android的數據存儲有四種方式:1.Shared Preferences主要用於存儲key-value對格式的 數據,是輕量級的存儲機制,輕到只能存儲基本數據類型。