2016-12-02 48 views
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' 

任何人都可以解決這個問題。

回答

0

com.mcxiaoke.volley基本上是谷歌圖書館的一個分支,所以我想你可以用唯一的官方版本。還請注意,根據mcxiaoke/android-volleyREAD.ME

(...)這個項目已被棄用,不再被維護,請使用正式版從jCenter。

compile 'com.android.volley:volley:1.0.0'