質問編集履歴
2
コードミス
title
CHANGED
File without changes
|
body
CHANGED
@@ -19,7 +19,7 @@
|
|
19
19
|
protected void onCreate(Bundle savedInstanceState) {
|
20
20
|
super.onCreate(savedInstanceState);
|
21
21
|
mRoot = (ViewGroup) View.inflate(WebAccess.this, R.layout.webaccess, null);
|
22
|
-
|
22
|
+
setContentView(R.layout.webaccess);
|
23
23
|
ButterKnife.bind(this,mRoot);
|
24
24
|
|
25
25
|
mWebView = (WebView) findViewById(R.id.web);
|
1
url 変更
title
CHANGED
File without changes
|
body
CHANGED
@@ -35,7 +35,7 @@
|
|
35
35
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
|
36
36
|
mWebView.getSettings().setCacheMode(WebSettings.LOAD_CACHE_ELSE_NETWORK);
|
37
37
|
}
|
38
|
-
mWebView.loadUrl("https://
|
38
|
+
mWebView.loadUrl("https://www.google.co.jp");
|
39
39
|
|
40
40
|
}
|
41
41
|
|