Android經常使用的開源第三方庫總結

主要從android總體框架、數據庫(orm)、敏捷開發(註解)、網絡請求、json序列化、緩存、加載網絡圖片和響應式編程,這幾個方面去整理,並附上各個項目github和官網地址,方便開發中的取捨。java


###xUtilsreact

  • 主要由4個模塊組成DbUtils模塊、ViewUtils模塊、HttpUtils模塊和BitmapUtils模塊
  • 架包格式: aar(834KB) gradle('org.xutils:xutils:3.3.34')
  • 地址:https://github.com/wyouflf/xUtils3

###ormlite-androidandroid

###GreenDaogit

  • 由greenrobot提供開發;系能最大化,效率很高,插入和更新的速度是sqlite的2倍,加載實體的速度是ormlite的4.5倍
  • 架包格式: jar(98KB)
    gradle('de.greenrobot:greendao:2.1.0')
  • 地址:https://github.com/greenrobot/greenDAO

###ButterKnifegithub

###Volleysql

  • google 推薦網絡請求庫,適用於多個小數據請求;缺點是沒有自帶上傳和下載文件的功能,不支持對bitmap處理。
  • 架包格式: jar(92KB) gradle('com.mcxiaoke.volley:library:1.0.19')
  • 地址:https://github.com/mcxiaoke/android-volley

###Netroid數據庫

  • Volley的擴展庫,供執行網絡請求、緩存返回結果、批量圖片加載、大文件斷點下載的常見Http交互功能
  • 架包格式: jar(98KB) gradle('com.duowan.android.netroid:netroid:1.2.1')
  • 地址:https://github.com/vince-styling/Netroid

###okHttp編程

  • 由Square公司出品,目前相對比較成熟的網絡請求庫,得到過google研發人員的稱讚;支持斷點續傳,文件下載等功能
  • 架包格式: jar(328KB) gradle('com.squareup.okhttp3:okhttp:3.2.0')
  • 地址:https://github.com/square/okhttp

###Retrofitjson

  • 由Square公司出品,使用起來也是很是簡單的,主要也是經過註解的方式簡化了接口的定義;可配合okHttp來使用。
  • 架包格式:
    jar(85KB)
    gradle('com.squareup.retrofit2:retrofit:2.0.2')
  • 地址:https://github.com/square/retrofit

###fastjson-android設計模式

  • 由阿里巴巴技術團隊支持,號稱序列化速度最快;實際適用效果仍是不錯的。
  • 架包格式: jar(190KB) gradle('com.alibaba:fastjson:1.1.50.android')
  • 地址:https://github.com/alibaba/fastjson

###gson

  • Google 提供的用來在 Java 對象和 JSON 數據之間進行映射的 Java 類庫。
  • 架包格式: jar(225KB) gradle('com.google.code.gson:gson:2.6.2')
  • 地址:https://github.com/google/gson

###DiskLruCache

###Image-Loader

###Picasso

  • 實現簡單,一行代碼就能徹底實現圖片的異步加載;解決adapter的錯亂等問題
  • 架包格式: jar(118KB) gradle('com.squareup.picasso:picasso:2.5.2')
  • 地址:
    https://github.com/square/picasso
    官網

###Fresco

###RxJava

###EventBus

  • 由greenrobot提供開發;針對Android優化的發佈/訂閱事件總線,代碼量小,可靈活在類之間傳遞數據。
  • 架包格式:
    jar(47KB)
    gradle('de.greenrobot:eventbus:3.0.0-beta1')
  • 地址: https://github.com/greenrobot/EventBus
相關文章
相關標籤/搜索