Android Studio OkHttp+RecyclerView多条目展示数据

Android Studio OkHttp+RecyclerView多条目展示数据

使用到了Gson-2.3.1 

okhttp:3.9.0

recyclerview-v7:26.1.0

导入依赖

compile 'com.android.support:recyclerview-v7:26.1.0'
compile 'com.squareup.okhttp3:okhttp:3.9.0'
implementation files('libs/gson-2.3.1.jar')
compile files('libs/universal-image-loader-1.9.3.jar')
添加网络权限
<uses-permission android:name="android.permission.INTERNET"/>
运行界面如下:

废话不多说,源代码下载地址:

https://github.com/bysjlwdx/OkhttpTest

猜你喜欢

转载自blog.csdn.net/bysjlwdx/article/details/85695970