0
我想送的WAMP的phpmyadmin數據..我用凌空庫到本地主機上的MySQL數據庫發送數據,但在我的代碼凌空是紅色給錯誤(無法解析符號凌空)。我在libs文件夾中添加了抽象庫,但問題仍然存在。無法解決可變凌空
@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());
最後一行中的關鍵詞(排)是紅色的,儘管我在庫文件夾中添加了排球庫。還在gradle文件中添加了排球庫,但它仍然不工作。
compile 'com.mcxiaoke.volley:library:1.0.0'
任何人都可以解決這個問題。