我正在尝试创建一个将网址加载到网页视图中的简单应用。但是,我一直在net::ERR_CACHE_MISS
。我已经添加了互联网的相关权限,这似乎是错误的最常见原因。
这是我的代码:
public class MainActivity extends AppCompatActivity {
private static String TAG = "Main";
@Override
protected void onCreate(Bundle savedInstanceState) {
// getWindow().requestFeature(Window.FEATURE_PROGRESS);
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
@Override
protected void onStart() {
super.onStart();
WebView webview = (WebView)findViewById(R.id.web_view);
webview.setWebViewClient(new myWebviewClient());
webview.getSettings().setJavaScriptEnabled(true);
webview.getSettings().setLoadWithOverviewMode(true);
webview.getSettings().setUseWideViewPort(true);
webview.loadUrl("http://www.foodport.co.in");
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
public class myWebviewClient extends WebViewClient {
@Override
public void onReceivedError(WebView view, int errorCode, String description, String failingUrl) {
super.onReceivedError(view, errorCode, description, failingUrl);
Log.i(TAG, "onReceivedError "+ errorCode);
}
}
我已将<uses-permission android:name="ANDROID.PERMISSION.INTERNET"/>
添加到清单文件中。
有任何帮助吗?我唯一的线索是,有一个在同一部手机上使用相同包名的另一个应用程序,但这也是所有权限。 我正在检查运行Android 4.4的手机,我检查了this post,但我不认为这是问题所在。
答案 0 :(得分:1)
我已添加到清单文件
Android区分大小写。请将此修改为android.permission.INTERNET
。
答案 1 :(得分:0)
试试这段代码
if (Build.VERSION.SDK_INT >= 19) {
webview.getSettings().setCacheMode(WebSettings.LOAD_CACHE_ELSE_NETWORK);
}
or use this code
webview.getSettings().setCacheMode(android.webkit.WebSettings.LOAD_NO_CACHE);
答案 2 :(得分:-2)
您必须设置 WebView webview = (WebView)findViewById(R.id.web_view);
在 OnCreate 方法而不是onStart
在设置活动setContentView(R.layout.activity_layout);