Android Volley newRequestQueue - 不兼容的类型

时间:2017-11-17 12:47:47

标签: android android-volley

我正在申请使用Volley从服务器获取数据。但是当我需要获得请求时:

rq = Volley.newRequestQueue(this);

获取此错误

image

我已经在Manifest和app set中设置了INTERNET权限:compile'c​​om.android.volley:volley:1.0.0'

我的所有代码:

package com.example.doma.fp;

import android.net.http.RequestQueue;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.TextView;

import com.android.volley.Request;
import com.android.volley.Response;
import com.android.volley.VolleyError;
import com.android.volley.toolbox.JsonObjectRequest;
import com.android.volley.toolbox.Volley;

import org.json.JSONException;
import org.json.JSONObject;


public class MainActivity extends AppCompatActivity {

    RequestQueue rq ;
    TextView nameText;

    String name;

    String url = "http://127.0.0.1/OOP/database/android.php";


    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        rq = Volley.newRequestQueue(this);
        nameText = (TextView) findViewById(R.id.textname);

      //  sendjsonrequest();

    }

    public void sendjsonrequest()
    {
        JsonObjectRequest jsonObjectRequest = new JsonObjectRequest(Request.Method.GET, url, null, new Response.Listener<JSONObject>() {
            @Override
            public void onResponse(JSONObject response) {

                try {
                    name = response.getString("name");

                    nameText.setText(name);
                } catch (JSONException e) {
                    e.printStackTrace();
                }

            }
        }, new Response.ErrorListener() {
            @Override
            public void onErrorResponse(VolleyError error) {

            }
        });


    }

}

感谢您的帮助。

2 个答案:

答案 0 :(得分:1)

好像你输入了错误的班级...

import android.net.http.RequestQueue;

应该是 -

import com.android.volley.RequestQueue;

答案 1 :(得分:0)

您已导入android.net.http.RequestQueue而非com.android.volley.RequestQueue;