我正在尝试发送关于wamp phpmyadmin的数据..我正在使用volley库在本地主机上的mysql数据库中发送数据,但我的代码中的凌空是红色给出错误(无法解析符号凌空)。我在libs文件夹中添加了volley库,但问题仍然存在。
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.makeaccount);
emailHint = (EditText) findViewById(R.id.emailHint);
userNameHint = (EditText) findViewById(R.id.UserHint);
passHint = (EditText) findViewById(R.id.enterPass);
reenterHint = (EditText) findViewById(R.id.Reenter);
back = (Button) findViewById(R.id.BACK);
ok = (Button) findViewById(R.id.OK);
requestQueue = volley.newRequestQueue(getApplicationContext());
最后一行的关键词(齐射)是红色的,虽然我已经在libs文件夹中添加了凌空库。还在gradle文件中添加了volley库,但仍无法正常工作..
compile 'com.mcxiaoke.volley:library:1.0.0'
任何人都可以为此提供解决方案。
答案 0 :(得分:0)
存储库com.mcxiaoke.volley
基本上是Google库的一个分支,所以我想你只能使用正式版。另请注意,根据mcxiaoke/android-volley READ.ME
:
(...)此项目已弃用且不再维护,请使用jCenter的正式版。
compile 'com.android.volley:volley:1.0.0'