我正在尝试按照解析XML数据的教程,但他使用requestQueue并使用Volley启动它。
出于某种原因,当我尝试使用Volley.newRequestQueue(this);
时,android studio似乎没有注册Volley作为一个东西,并注册为错误。
任何帮助将不胜感激!
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_second_maps);
// Obtain the SupportMapFragment and get notified when the map is ready to be used.
SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager()
.findFragmentById(R.id.map);
mapFragment.getMapAsync(this);
requestQueue = Volley.newRequestQueue(this);