91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何在Android使用OkHttpUtils實現二次封裝

發布時間:2020-11-25 17:11:33 來源:億速云 閱讀:680 作者:Leah 欄目:移動開發

如何在Android使用OkHttpUtils實現二次封裝?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

OkHttpUtils為什么進行二次封裝

1、減少代碼量
2、后期換網絡處理框架方便

二次封裝的實現原理

1、將網絡請求提取在一個方法中
2、對里面的可變參數,可以通過參數傳遞過去,也可以提供一個set方法傳遞過去
3、對于請求失敗和成功,我們可以使用接口回調,讓調用該方法的對象處理

封裝后的網絡處理類的功能

1、網絡請求
2、xml數據轉換成javaBean

每一個處理網絡請求的ListView都要處理的3數據方法

1、初始化數據
2、下拉刷新數據
3、上拉加載數據

封裝前的代碼

 /**
  * 3,加載更多
  * 注意事項:
  * 請求成功數據更新之后,要關閉SpringView
  */
 private void onDealLoadmore() {
  //資訊的網絡請求地址
  String newsUrl = Constant.NEWS_URL;
  //http://www.oschina.net/action/api/news_list?pageIndex=0&catalog=1&pageSize=20
  //關閉SpringView
  mSpringView.onFinishFreshAndLoad();
  //網絡請求
  OkHttpUtils
    .get()
    .url(newsUrl)
    .addParams("pageIndex", mCurrentPageIndex + "")//固定
    .addParams("catalog", "1")//固定,1代表資訊
    .addParams("pageSize", "20")//因為,一頁加載20條數據
    .build()
    .execute(new StringCallback() {
     @Override
     public void onError(Call call, Exception e, int id) {
      Toast.makeText(mContext, "上拉加載失敗", Toast.LENGTH_SHORT).show();
      /* //關閉SpringView
      mSpringView.onFinishFreshAndLoad();*/
     }

     @Override
     public void onResponse(String response, int id) {
      //請求成功,將字符串轉為javaBean,并獲取里面的泛型為News的集合
      NewsList newsList = XmlUtils.toBean(NewsList.class, response.getBytes());
      //對請求的數據進行非空判斷
      if (newsList != null) {
       List<News> list = newsList.getList();
       if (list != null && list.size() > 0) {
        //數據的更新
        mData.addAll(newsList.getList());
        //適配器的更新
        mMyNewsPagerAdapter.notifyDataSetChanged();
        //請求頁的索引要加1
        ++mCurrentPageIndex;
        /* //關閉SpringView
        mSpringView.onFinishFreshAndLoad();*/

       }
      }
     }
    });

 }

封裝后的代碼

/**
  * 3,加載更多
  * 注意事項:
  * 請求成功數據更新之后,要關閉SpringView
  */
 private void onDealLoadmore() {
  mSpringView.onFinishFreshAndLoad();
  mNewsPagerProtocol.setCurrentPageIndex(mCurrentPageIndex);
  mNewsPagerProtocol.loadData(new NewsPagerProtocol.Callback() {
   @Override
   public void onError(Call call, Exception e, int id) {
    Toast.makeText(mContext, "下拉刷新失敗", Toast.LENGTH_SHORT).show();
   }

   @Override
   public void onResponse(NewsList newsList, int id) {

    if (newsList != null) {


     //獲取刷新的數據集合
     List<News> list = newsList.getList();
     //健壯性判斷
     if (list != null && list.size() > 0) {
      //更新數據集合
      mData.addAll(list);
      //更新適配器
      mMyNewsPagerAdapter.notifyDataSetChanged();
      //更新頁數的索引值
      mCurrentPageIndex ++ ;
     }
    }

   }
  });

 }

網絡封裝的代碼

/**
 * Author:  歸零
 * Date:  2017/3/4 1:08
 * Email:  4994766@qq.com
 * Description:網絡請求和數據解析
 */
public class NewsPagerProtocol {


 private int mCurrentPageIndex;

 public void setCurrentPageIndex(int currentPageIndex) {

  mCurrentPageIndex = currentPageIndex;
 }


 public void loadData(final Callback callback) {
  //資訊的網絡請求地址
  String newsUrl = Constant.NEWS_URL;
  //http://www.oschina.net/action/api/news_list&#63;pageIndex=0&catalog=1&pageSize=20
  //網絡請求
  OkHttpUtils
    .get()
    .url(newsUrl)
    .addParams("pageIndex", mCurrentPageIndex + "")//固定
    .addParams("catalog", "1")//固定,1代表資訊
    .addParams("pageSize", "20")//因為,一頁加載20條數據
    .build()
    .execute(new StringCallback() {
     @Override
     public void onError(Call call, Exception e, int id) {
      //因為返回失敗處理的請求不一樣,所以不處理,交給調用的方法處理
      callback.onError(call, e, id);
     }

     @Override
     public void onResponse(String response, int id) {
      //請求成功,將字符串轉為javaBean,并獲取里面的泛型為News的集合
      NewsList newsList = XmlUtils.toBean(NewsList.class, response.getBytes());
      //將轉換后的數據通過接口回調,返回給調用方法的
      callback.onResponse(newsList, id);
     }
    });
 }


 public interface Callback {

  public void onError(Call call, Exception e, int id);

  public void onResponse(NewsList newsList, int id);
 }
}

關于如何在Android使用OkHttpUtils實現二次封裝問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

横山县| 全州县| 奉贤区| 许昌县| 开封县| 繁峙县| 怀柔区| 巴楚县| 海口市| 北碚区| 锡林浩特市| 莱阳市| 南投县| 卓尼县| 柘城县| 石河子市| 胶南市| 潞西市| 枞阳县| 宝丰县| 同仁县| 富川| 南汇区| 抚远县| 太湖县| 天门市| 遂昌县| 利辛县| 泗阳县| 正定县| 晋城| 桑日县| 曲水县| 舞钢市| 丽水市| 汉沽区| 崇信县| 灵璧县| 洛浦县| 邵东县| 澎湖县|