Search in sources :

Example 6 with OnClick

use of butterknife.OnClick in project okhttp-OkGo by jeasonlzy.

the class TestActivity method btn1.

@OnClick(R.id.btn1)
public void btn1(View view) {
    Call<String> stringCall = OkGo.get("").getCall(StringConvert.create());
    Call<Bitmap> bitmapCall = OkGo.get("").getCall(BitmapConvert.create());
    Call<File> fileCall = OkGo.get("").getCall(new FileConvert());
    Call<LzyResponse<ServerModel>> call = OkGo.get("").getCall(new JsonConvert<LzyResponse<ServerModel>>() {
    });
    Call<LzyResponse<ServerModel>> listCall = OkGo.get("").getCall(new JsonConvert<LzyResponse<ServerModel>>() {
    });
    Observable<String> stringObservable = OkGo.get("").getCall(StringConvert.create(), RxAdapter.<String>create());
    Observable<LzyResponse<ServerModel>> observable = OkGo.get("").getCall(new JsonConvert<LzyResponse<ServerModel>>() {
    }, RxAdapter.<LzyResponse<ServerModel>>create());
}
Also used : LzyResponse(com.lzy.demo.model.LzyResponse) Bitmap(android.graphics.Bitmap) ServerModel(com.lzy.demo.model.ServerModel) FileConvert(com.lzy.okgo.convert.FileConvert) File(java.io.File) OnClick(butterknife.OnClick)

Example 7 with OnClick

use of butterknife.OnClick in project okhttp-OkGo by jeasonlzy.

the class RxBitmapActivity method requestImage.

@OnClick(R.id.requestImage)
public void requestImage(View view) {
    Subscription subscription = //
    ServerApi.getBitmap("aaa", "bbb").doOnSubscribe(new Action0() {

        @Override
        public void call() {
            showLoading();
        }
    }).observeOn(//
    AndroidSchedulers.mainThread()).subscribe(new Action1<Bitmap>() {

        @Override
        public void call(Bitmap bitmap) {
            //请求成功
            dismissLoading();
            handleResponse(bitmap, null, null);
            imageView.setImageBitmap(bitmap);
            System.out.println("---------");
        }
    }, new Action1<Throwable>() {

        @Override
        public void call(Throwable throwable) {
            //请求失败
            throwable.printStackTrace();
            showToast("请求失败");
            dismissLoading();
            handleError(null, null);
        }
    });
    addSubscribe(subscription);
}
Also used : Action0(rx.functions.Action0) Bitmap(android.graphics.Bitmap) Subscription(rx.Subscription) OnClick(butterknife.OnClick)

Example 8 with OnClick

use of butterknife.OnClick in project okhttp-OkGo by jeasonlzy.

the class RxCommonActivity method upString.

@OnClick(R.id.upString)
public void upString(View view) {
    Subscription subscription = //
    OkGo.post(Urls.URL_TEXT_UPLOAD).headers("bbb", //
    "222").upString(//
    "上传的文本。。。").getCall(StringConvert.create(), //以上为产生请求事件,请求默认发生在IO线程
    RxAdapter.<String>create()).doOnSubscribe(new Action0() {

        @Override
        public void call() {
            //开始请求前显示对话框
            showLoading();
        }
    }).observeOn(//切换到主线程
    AndroidSchedulers.mainThread()).subscribe(new Action1<String>() {

        @Override
        public void call(String s) {
            //请求成功,关闭对话框
            dismissLoading();
            handleResponse(s, null, null);
        }
    }, new Action1<Throwable>() {

        @Override
        public void call(Throwable throwable) {
            throwable.printStackTrace();
            //请求失败
            dismissLoading();
            showToast("请求失败");
            handleError(null, null);
        }
    });
    addSubscribe(subscription);
}
Also used : Action0(rx.functions.Action0) Subscription(rx.Subscription) OnClick(butterknife.OnClick)

Example 9 with OnClick

use of butterknife.OnClick in project okhttp-OkGo by jeasonlzy.

the class RxCommonActivity method upJson.

@OnClick(R.id.upJson)
public void upJson(View view) {
    HashMap<String, String> params = new HashMap<>();
    params.put("key1", "value1");
    params.put("key2", "这里是需要提交的json格式数据");
    params.put("key3", "也可以使用三方工具将对象转成json字符串");
    params.put("key4", "其实你怎么高兴怎么写都行");
    JSONObject jsonObject = new JSONObject(params);
    Subscription subscription = //
    OkGo.post(Urls.URL_TEXT_UPLOAD).headers("bbb", //
    "222").upJson(//
    jsonObject.toString()).getCall(StringConvert.create(), //以上为产生请求事件,请求默认发生在IO线程
    RxAdapter.<String>create()).doOnSubscribe(new Action0() {

        @Override
        public void call() {
            //开始请求前显示对话框
            showLoading();
        }
    }).observeOn(//切换到主线程
    AndroidSchedulers.mainThread()).subscribe(new Action1<String>() {

        @Override
        public void call(String s) {
            //请求成功,关闭对话框
            dismissLoading();
            handleResponse(s, null, null);
        }
    }, new Action1<Throwable>() {

        @Override
        public void call(Throwable throwable) {
            throwable.printStackTrace();
            //请求失败
            dismissLoading();
            showToast("请求失败");
            handleError(null, null);
        }
    });
    addSubscribe(subscription);
}
Also used : Action0(rx.functions.Action0) JSONObject(org.json.JSONObject) HashMap(java.util.HashMap) Subscription(rx.Subscription) OnClick(butterknife.OnClick)

Example 10 with OnClick

use of butterknife.OnClick in project okhttp-OkGo by jeasonlzy.

the class RxCommonActivity method jsonArrayRequest.

@OnClick(R.id.jsonArrayRequest)
public void jsonArrayRequest(View view) {
    Subscription subscription = //
    ServerApi.getServerListModel("aaa", "bbb").doOnSubscribe(new Action0() {

        @Override
        public void call() {
            showLoading();
        }
    }).map(new Func1<LzyResponse<List<ServerModel>>, List<ServerModel>>() {

        @Override
        public List<ServerModel> call(LzyResponse<List<ServerModel>> response) {
            return response.data;
        }
    }).observeOn(//
    AndroidSchedulers.mainThread()).subscribe(new Action1<List<ServerModel>>() {

        @Override
        public void call(List<ServerModel> serverModels) {
            //请求成功
            dismissLoading();
            handleResponse(serverModels, null, null);
        }
    }, new Action1<Throwable>() {

        @Override
        public void call(Throwable throwable) {
            //请求失败
            throwable.printStackTrace();
            showToast("请求失败");
            dismissLoading();
            handleError(null, null);
        }
    });
    addSubscribe(subscription);
}
Also used : Action0(rx.functions.Action0) LzyResponse(com.lzy.demo.model.LzyResponse) ServerModel(com.lzy.demo.model.ServerModel) List(java.util.List) Subscription(rx.Subscription) OnClick(butterknife.OnClick)

Aggregations

OnClick (butterknife.OnClick)465 Intent (android.content.Intent)206 View (android.view.View)24 AlertDialog (android.support.v7.app.AlertDialog)21 TextView (android.widget.TextView)18 File (java.io.File)18 Bundle (android.os.Bundle)16 BindView (butterknife.BindView)16 DialogInterface (android.content.DialogInterface)15 ArrayList (java.util.ArrayList)15 DialogFragment (com.rey.material.app.DialogFragment)13 SimpleDialog (com.rey.material.app.SimpleDialog)13 Uri (android.net.Uri)11 SimpleDateFormat (java.text.SimpleDateFormat)11 SuppressLint (android.annotation.SuppressLint)10 ImageView (android.widget.ImageView)10 LzyResponse (com.lzy.demo.model.LzyResponse)10 HorizontalChangeHandler (com.bluelinelabs.conductor.changehandler.HorizontalChangeHandler)9 List (java.util.List)9 Animator (android.animation.Animator)8