2014-02-14 53 views
1

當試圖在eclipse上運行帶有代理Internet訪問的計算機上的簡單webView應用程序時,仿真器(nexus s)顯示「錯誤緩存訪問被拒絕」,並且在下方顯示「抱歉,您當前不被允許直到您已經驗證自己從這個chache要求http://google.it/仿真器的APN設置爲正確的代理服務器和端口,以及在模擬器上的用戶名和密碼,上網工程高速緩存訪​​問拒絕eclipse仿真器

守則:。

public class MainActivity extends Activity { 
@Override 
protected void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.activity_main); 

     String url = "http://www.google.it"; 
    WebView view = (WebView) this.findViewById(R.id.webView1); 
    view.getSettings().setJavaScriptEnabled(true); 
    view.loadUrl(url); 
} 

    @Override 
    public boolean onCreateOptionsMenu(Menu menu) { 
     // Inflate the menu; this adds items to the action bar if it is present. 
     getMenuInflater().inflate(R.menu.main, menu); 
     return true; 
    } 
} 

回答

1

只需刪除當前的android虛擬設備並創建一個新的。這就解決了我的錯誤

+0

或使用SDK Manager安裝HAXM加速器。 – Radiance