日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 运维知识 > Android >内容正文

Android

Android常用库整理

發(fā)布時間:2023/12/20 Android 32 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Android常用库整理 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

本文整理了安卓開發(fā)中常用的官方和三方庫及其官網(wǎng)地址,方便同仁們進(jìn)行查閱技術(shù)選型追更。這里羅列的庫一般是星級較高、可靠性較好、維護(hù)中的庫,所以在功能性、可靠性以及性能上通常是滿足需求的。在技術(shù)選型時建議從以下幾點進(jìn)行考量:

  • 擴(kuò)展性:是否支持自定義功能拓展;
  • 性能:是否需要極致性能要求;
  • 安全性:是否具有安全漏洞;
  • 技術(shù)支持:文檔是否完備,更新頻率等;
  • 體積:是否對包體積具有極致要求;

如果有官方的庫建議使用官方的,維護(hù)有保障,當(dāng)然像square公司出品的幾乎也可以認(rèn)為是官方的了。

目錄

  • AndroidX&Material
  • 基礎(chǔ)庫
    • 并發(fā)編程
    • 數(shù)據(jù)解析
    • 網(wǎng)絡(luò)請求
    • 文件讀寫
    • 輕量級存儲
    • 數(shù)據(jù)庫
    • 日志記錄
    • 圖片加載
    • 事件總線
    • js通訊
    • 其他
  • 架構(gòu)
    • 組件化
    • 插件化
  • AOP/IOC
    • 依賴注入和插裝
    • 插樁工具鏈
  • 功能庫
  • 控件庫
  • 開放平臺SDK

AndroidX&Material

名稱GAV官網(wǎng)簡介
appcompatandroidx.appcompat:appcompat:1.1.0Dialog/activity/actionbar/menu等
cardviewandroidx.cardview:cardview:1.0.0卡片布局
materialcom.google.android.material:material:1.1.0卡片布局
lifecycleandroidx.lifecycle:lifecycle-extensions:2.2.0activity/fragment/service生命周期
constraintlayoutandroidx.constraintlayout:constraintlayout:1.1.3相對布局
coordinatorlayoutandroidx.coordinatorlayout:coordinatorlayout:1.1.0動畫框架布局
swiperefreshlayoutandroidx.swiperefreshlayout:swiperefreshlayout:1.1.0下拉刷新
viewpagerandroidx.viewpager:viewpager:1.0.0viewpager
viewpager2androidx.viewpager2:viewpager2:1.0.0基于recyclerview實現(xiàn)的viewpager
fragmentandroidx.fragment:fragment:1.2.0fragment
activityandroidx.activity:activity:1.1.0activity
drawerlayoutandroidx.drawerlayout:drawerlayout:1.0.0側(cè)滑布局
recyclerviewandroidx.recyclerview:recyclerview:1.1.0列表
transitionandroidx.transition:transition:1.2.0轉(zhuǎn)場動畫
loaderandroidx.loader:loader:1.0.0異步加載
collectionandroidx.collection:collection:1.1.0經(jīng)優(yōu)化的List、Map、Set集合
annotationandroidx.annotation:annotation:1.1.0常用注解
multidexandroidx.multidex:multidex:2.0.064K限制,minSDK21以下時需要手動導(dǎo)入

上面只列出了常見的,最全版本可以到這里查看

基礎(chǔ)庫

并發(fā)編程

名稱GAV官網(wǎng)簡介
rxjava2io.reactivex.rxjava2:rxjava:2.2.5
io.reactivex.rxjava2:rxandroid:2.1.0
org.reactivestreams:reactive-streams:1.0.2
githubrxjava2

數(shù)據(jù)解析

名稱GAV官網(wǎng)簡介
fastjsoncom.alibaba:fastjson:1.2.49githubjson解析
gsoncom.google.code.gson:gson:2.8.5githubjson解析
jacksoncom.fasterxml.jackson.core:jackson-core:2.8.9
com.fasterxml.jackson.core:jackson-annotations:2.8.0
com.fasterxml.jackson.core:jackson-databind:2.8.9
githubjson解析
LoganSquareclasspath ‘com.neenbedankt.gradle.plugins:android-apt:1.8’
apply plugin: ‘com.neenbedankt.android-apt’
apt ‘com.bluelinelabs:logansquare-compiler:1.3.6’
compile ‘com.bluelinelabs:logansquare:1.3.6’
githubjson解析,編譯期生成代碼因此是靜態(tài)的
simple-xmlorg.simpleframework:simple-xml:2.7.1xml解析
jsouporg.jsoup:jsoup:1.14.1-SNAPSHOTgithubhtml操作

網(wǎng)絡(luò)請求

名稱GAV官網(wǎng)簡介
retrofitcom.squareup.retrofit2:retrofit:2.7.1
com.squareup.retrofit2:converter-gson:2.3.0
com.squareup.retrofit2:adapter-rxjava2:2.3.0
com.squareup.retrofit2:converter-simplexml:2.3.0
github網(wǎng)絡(luò)請求
okhttpcom.squareup.okhttp3:okhttp:3.14.4
com.squareup.okhttp3:okhttp-urlconnection:3.9.1
github網(wǎng)絡(luò)請求
Java-WebSocketorg.java-websocket:Java-WebSocket:1.5.1githubWebSocket
android-async-httpcom.loopj.android:android-async-http:1.4.11github網(wǎng)絡(luò)請求
volleycom.android.volley:volley:1.2.1-SNAPSHOTgithub網(wǎng)絡(luò)請求、圖片加載
NoHttpcom.yanzhenjie.nohttp:nohttp:1.1.11github網(wǎng)絡(luò)請求
Novatecom.tamic.novate:novate:1.5.5github網(wǎng)絡(luò)請求

文件讀寫

名稱GAV官網(wǎng)簡介
okiocom.squareup.okio:okio:1.17.4文件IO

輕量級存儲

名稱GAV官網(wǎng)簡介
MMKVcom.tencent:mmkv-static:1.2.10githubkv存儲,基于mmap

數(shù)據(jù)庫

名稱GAV官網(wǎng)簡介
litepalorg.litepal.android:java:3.2.3
org.litepal.android:core:3.2.3
github數(shù)據(jù)庫
activeandroidcom.michaelpardo:activeandroid:3.1.0-SNAPSHOTgithub數(shù)據(jù)庫
ormlite-androidcom.j256.ormlite:ormlite-android:5.7-SNAPSHOTgithub數(shù)據(jù)庫
greendaoclasspath ‘org.greenrobot:greendao-gradle-plugin:3.3.0’
apply plugin: ‘org.greenrobot.greendao’
implementation ‘org.greenrobot:greendao:3.3.0’
github數(shù)據(jù)庫
realmclasspath “io.realm:realm-gradle-plugin:10.7.0-SNAPSHOT”
apply plugin: ‘realm-android’
compileOnly ‘org.projectlombok:lombok:1.16.18’
compileOnly ‘javax.annotation:javax.annotation-api:1.3.1’
annotationProcessor ‘org.projectlombok:lombok:1.16.18’
github數(shù)據(jù)庫,雖然性能不錯,但是包體積很大

日志記錄

名稱GAV官網(wǎng)簡介
loggercom.orhanobut:logger:2.2.0github日志
timbercom.jakewharton.timber:timber:4.7.1github日志,價值在于日志類的抽象
LogUtilscom.apkfuns.logutils:library:1.7.5github日志,功能比較完備
xLogcom.elvishew:xlog:1.10.0github日志
Log4acom.github.pqpo:Log4a:1.4.2github日志,基于mmap
marscom.tencent.mars:mars-wrapper:1.2.5
或者com.tencent.mars:mars-core:1.2.5
github高性能日志
xCrashcom.iqiyi.xcrash:xcrash-android-lib:3.0.0githubjava/native奔潰日志

圖片加載

名稱GAV官網(wǎng)簡介
glidecom.github.bumptech.glide:glide:4.9.0
com.github.bumptech.glide:gifdecoder:4.9.0
com.github.bumptech.glide:disklrucache:4.9.0
com.github.bumptech.glide:annotations:4.9.0
com.github.bumptech.glide:compiler:4.9.0
github圖片加載
glide-transformationsjp.wasabeef:glide-transformations:4.0.0
jp.co.cyberagent.android:gpuimage:2.0.4
glide拓展
picassocom.squareup.picasso:picasso:2.71828github圖片加載
frescocom.facebook.fresco:fresco:2.5.0github圖片加載,體積較大
Android-Universal-Image-Loadercom.nostra13.universalimageloader:universal-image-loader:1.9.5github圖片加載

事件總線

名稱GAV官網(wǎng)簡介
eventbusorg.greenrobot:eventbus:3.1.1github事件總線
eventbusorg.simple:androideventbus:1.0.5.1github事件總線,不再維護(hù)
ottocom.squareup:otto:1.3.8github事件總線,不再維護(hù)

js通訊

名稱GAV官網(wǎng)簡介
jsbridgecom.github.lzyzsd:jsbridge:1.0.4githubjs通訊,不再維護(hù)
DSBridge-Androidcom.github.wendux:DSBridge-Android:3.0-SNAPSHOT
or x5: com.github.wendux:DSBridge-Android:x5-3.0-SNAPSHOT
githubjs通訊
AgentWebimplementation ‘com.github.Justson.AgentWeb:agentweb-core:v4.1.9-androidx’ // (必選)
implementation ‘com.github.Justson.AgentWeb:agentweb-filechooser:v4.1.9-androidx’ // (可選)
implementation ‘com.github.Justson:Downloader:v4.1.9-androidx’ // (可選)
githubh5容器

其他

名稱GAV官網(wǎng)簡介
utilcodecom.blankj:utilcode:1.30.0githubSDK封裝,也支持事件總線、日志記錄、并發(fā)編程等

架構(gòu)

組件化

名稱GAV官網(wǎng)簡介
ARouterclasspath “com.alibaba:arouter-register:1.0.2”
compile ‘com.alibaba:arouter-api:1.5.2’
annotationProcessor ‘com.alibaba:arouter-compiler:1.5.2’
githubSDK封裝,也支持事件總線、日志記錄、并發(fā)編程等

插件化

名稱GAV官網(wǎng)簡介

AOP/IOC

依賴注入和插裝

名稱GAV官網(wǎng)簡介
daggercom.google.dagger:dagger-android:2.x
com.google.dagger:dagger-android-processor:2.x
github依賴注入
androidannotationsorg.androidannotations:androidannotations:version
org.androidannotations:androidannotations-api:version
github依賴注入
hunter-okhttpcom.quinn.hunter:hunter-okhttp-library:0.8.5
插件:com.quinn.hunter:hunter-okhttp-plugin:0.9.2
githubokhttp鉤子
xHookgithubnative鉤子
aspectjxclasspath ‘com.hujiang.aspectjx:gradle-android-plugin-aspectjx:2.0.8’github增強(qiáng)版aspectj

插樁工具鏈

名稱GAV官網(wǎng)簡介
javapoetcom.squareup:javapoet:1.7.0java文件生成
kotlinpoetcom.squareup:kotlinpoet:1.9.0githubkotlin文件生成
javassistorg.javassist:javassist:3.28.0-GAgithubjava、字節(jié)碼
asmorg.ow2.asm:asm:9.2官網(wǎng)字節(jié)碼
aspectjorg.aspectj:aspectjweaver:1.9.7官網(wǎng)
github
java

功能庫

名稱GAV官網(wǎng)簡介
keeplivecom.fanjun:keeplive:1.1.20應(yīng)用層進(jìn)程?;?/td>
permissioncom.yanzhenjie.permission: x:2.0.1動態(tài)權(quán)限
rxpermissionscom.tbruyelle.rxpermissions2:rxpermissions:0.9.5動態(tài)權(quán)限
rxlifecycle-androidcom.trello.rxlifecycle2:rxlifecycle-android:2.2.1rx生命周期
zxingcom.google.zxing:core:3.3.3
com.google.zxing:android-core:3.3.0
github二維碼編解碼
jjwtio.jsonwebtoken:jjwt:0.9.0githubtoken工具
pinyin4jcom.belerweb:pinyin4j:2.5.0github拼音
tinypinyincom.github.promeg:tinypinyin:2.0.3
com.github.promeg:tinypinyin-android-asset-lexicons:2.0.3
com.github.promeg:tinypinyin-lexicons-android-cncity:2.0.3
github拼音
PersistentCookieJarcom.github.franmontiel:PersistentCookieJar:v1.0.1githubcookie持久化
Matissecom.zhihu.android:matisse:0.5.3-beta3github圖片選擇
easyexcelcom.alibaba:easyexcel:2.2.10githubExcel操作
dexmakercom.linkedin.dexmaker:dexmaker-mockito:2.28.1githubclass代理
FingerprintIdentifycom.github.uccmawei:FingerprintIdentify:1.2.6github指紋識別封裝

控件庫

名稱GAV官網(wǎng)簡介
qmuicom.qmuiteam:qmui:1.4.4github基礎(chǔ)控件庫
bga-bannercn.bingoogolapple:bga-banner:3.0.0banner輪播圖
materialrefreshlayoutcom.cjj.materialrefreshlayout:library:1.3.0下拉刷新
SmartRefreshLayoutcom.scwang.smartrefresh:SmartRefreshLayout:1.1.0github下拉刷新&加載更多
recyclerviewcom.yanzhenjie.recyclerview: x:1.3.2增強(qiáng)recyclerview :loadmore、sticky、側(cè)滑菜單等
recyclerviewcom.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.46增強(qiáng)recyclerview :通用adapter
ultimaterecyclerviewcom.marshalchen.ultimaterecyclerview:library:0.9.0github增強(qiáng)recyclerview:可折疊
recyclerview-animatorsjp.wasabeef:recyclerview-animators:4.0.2githubrecyclerview 動畫
easyrecyclerviewcom.jude:easyrecyclerview:4.4.2增強(qiáng)recyclerview
PhotoViewcom.github.chrisbanes:PhotoView:2.1.4圖片縮放
photoviewcom.github.chrisbanes.photoview:library:1.2.4圖片縮放
imagezoomit.sephiroth.android.library.imagezoom:library:1.0.4
it.sephiroth.android.library.easing:library:1.0.2
圖片縮放
android-pdf-viewercom.github.barteksc:android-pdf-viewer:2.8.2
com.github.barteksc:pdfium-android:1.7.1
PDF預(yù)覽(有高級安全漏洞不建議實用)
ticketview:com.vipulasri:ticketview:1.0.7仿票據(jù)背景布局
flowlayout-libcom.hyman:flowlayout-lib:1.1.2流式布局
flexboxcom.google.android:flexbox:1.1.0流式布局&recyclerview拓展
loadingcom.yanzhenjie:loading:1.0.2加載動畫
LoadingDrawablegithub加載動畫,不再維護(hù)但是我個人非常推崇drawable形式
gridPasswordViewcom.jungly:gridPasswordView:0.3github密碼、短信驗證碼輸入框
NotifyUtilgithub玩轉(zhuǎn)安卓通知欄通知
ExpansionPanelcom.github.florent37:expansionpanel:1.2.4github動畫展開/收起容器
VerticalTabLayoutq.rorbin:VerticalTabLayout:1.2.5github縱向tablayout
Skeletoncom.ethanhua:skeleton:1.1.2
io.supercharge:shimmerlayout:2.1.0
github骨架加載
XPopupcom.github.li-xiaojun:XPopup:2.4.3github彈窗框架
NewbieGuidecom.github.huburt-Hu:NewbieGuide:v2.4.0github引導(dǎo)頁
lottie-androidcom.airbnb.android:lottie:3.7.1-SNAPSHOTgithub引導(dǎo)頁

開放平臺SDK

名稱GAV官網(wǎng)簡介
QQ未上傳到倉庫https://connect.qq.comQQ互聯(lián)SDK
ddsharesdkcom.alibaba.android:ddsharesdk:1.1.0https://ding-doc.dingtalk.com/釘釘分享
wechat-sdk-androidcom.tencent.mm.opensdk:wechat-sdk-android-without-mta:5.3.1https://open.weixin.qq.com/微信開發(fā)SDK
gmscom.google.android.gms:play-services-measurement-api:17.2.0
com.google.android.gms:play-services-base:17.0.0
com.google.android.gms:play-services-tasks:17.0.0
com.google.android.gms:play-services-measurement:17.2.0
com.google.android.gms:play-services-measurement-sdk:17.2.0
com.google.android.gms:play-services-measurement-impl:17.2.0
com.google.android.gms:play-services-stats:17.0.0
com.google.android.gms:play-services-measurement-sdk-api:17.2.0
com.google.android.gms:play-services-measurement-base:17.2.0
com.google.android.gms:play-services-ads-identifier:17.0.0
com.google.android.gms:play-services-basement:17.0.0
https://firebase.google.com/docs/android谷歌FCM推送
firebasecom.google.firebase:firebase-messaging:20.0.0
com.google.firebase:firebase-core:17.2.0
com.google.firebase:firebase-analytics:17.2.0
com.google.firebase:firebase-iid:20.0.0
com.google.firebase:firebase-common:19.0.0
com.google.firebase:firebase-iid-interop:17.0.0
com.google.firebase:firebase-measurement-connector:18.0.0
https://firebase.google.cn/谷歌firebase
umengcom.umeng.umsdk:push:6.0.1
com.umeng.umsdk:asms:1.1.3
com.umeng.umsdk:common:9.1.0
com.umeng.umsdk:crash:0.0.4
com.umeng.umsdk:oaid_vivo:1.0.0.1
com.umeng.umsdk:oaid_oppo:1.0.4
com.umeng.umsdk:oaid_mi:1.0.0
com.umeng.umsdk:oaid_lenovo:1.0.0
https://www.umeng.com/push友盟推送

總結(jié)

以上是生活随笔為你收集整理的Android常用库整理的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。