volley

Posted znsongshu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了volley相关的知识,希望对你有一定的参考价值。

官方网站  https://www.androidhive.info/2014/05/android-working-with-volley-library-1/

 

技术分享图片

/*
     * 使用Volley提交get请求
     */
    /*
     1. 创建请求队列对象(一次)
     2. 创建请求对象StringRequest
     3. 将请求添加到队列中
     */
    public void testVolleyGet(View v) {
        
        final ProgressDialog dialog = ProgressDialog.show(this, null, "正在请求中...");
        
        //创建请求对象StringRequest
        String path = et_network_url.getText().toString()+"?name=Tom5&age=15";
        StringRequest request = new StringRequest(path, new Response.Listener<String>() {
            @Override
            public void onResponse(String response) {//在主线程执行
                et_network_result.setText(response);
                dialog.dismiss();
            }
        }, null);
        //将请求添加到队列中
        queue.add(request);
    }

    /*
     * 使用Volley提交post请求
     */
    public void testVolleyPost(View v) {
        final ProgressDialog dialog = ProgressDialog.show(this, null, "正在请求中...");
        
        //创建请求对象StringRequest
        String path = et_network_url.getText().toString();
        StringRequest request = new StringRequest(Method.POST, path, new Response.Listener<String>() {
            @Override
            public void onResponse(String response) {
                et_network_result.setText(response);
                dialog.dismiss();
            }
        }, null){
            //重写此方法返回参数的map作为请求体
            @Override
            protected Map<String, String> getParams() throws AuthFailureError {
                Map<String, String> map = new HashMap<String, String>();
                map.put("name", "Tom6");
                map.put("age", "16");
                return map;
            }
        };
        //将请求添加到队列中
        queue.add(request);
    }

 

以上是关于volley的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Android Volley 中判断 TLS 版本

片段内的自定义列表不起作用

使用volley时如何保持进度条状态?

Fragment、Volley 和 RecyclerView

不要在片段中显示列表视图项

Volley框架源代码分析