leetcode信封-EasyVolley:对Volley的二次封装

时间:2024-07-20 12:29:08
【文件属性】:

文件名称:leetcode信封-EasyVolley:对Volley的二次封装

文件大小:103KB

文件格式:ZIP

更新时间:2024-07-20 12:29:08

系统开源

leetcode信封 EasyVolley 对Volley进行简单的封装,方便使用 retrofit + RxJava 的封装见 usage allprojects { repositories { ... maven { url "https://jitpack.io" } } } dependencies { ... compile 'com.github.XanthusL:EasyVolley:0.1' } 1.初始化,建议在Application中进行初始化操作 EasyVolley.init(this); 2.简单使用 // GET请求----------------------------------------------------- EasyVolley.stringGet("this param is URL", new EasyCallBack() { //请求成功的回调(http状态码200) @Override protected void onResponse(String response) { } //错误回调 @Override protected v


【文件预览】:
EasyVolley-master
----.gitignore(548B)
----app()
--------.gitignore(7B)
--------build.gradle(901B)
--------src()
--------proguard-rules.pro(670B)
----settings.gradle(30B)
----build.gradle(498B)
----gradlew(5KB)
----easyvolley()
--------.gitignore(7B)
--------build.gradle(638B)
--------src()
--------proguard-rules.pro(670B)
----README.md(3KB)
----gradlew.bat(2KB)
----gradle.properties(730B)
----gradle()
--------wrapper()

网友评论