質問編集履歴

4

意図的に内容を抹消する行為にあたるため

2021/06/29 05:18

投稿

退会済みユーザー
test CHANGED
@@ -1 +1 @@
1
- 質問を削除することしました
1
+ AndroidStudioのエミュレーターでWebVIewがネット繋がらない
test CHANGED
@@ -1,3 +1,313 @@
1
- 面倒だと思うなら回答なければいのはないでしょうかw
1
+ Android Studioでアプリ開発をる初心者す。
2
+
2
-
3
+ ネットで勉強しながら開発しているのですが、以下のサイトを参考にサンプルを作成したところエミュレーターでネットに繋がりませんでした。
4
+
5
+ 【参考にしたサンプルコード】
6
+
7
+ [https://akira-watson.com/android/webview.html](https://akira-watson.com/android/webview.html)
8
+
9
+ エミュレーターのブラウザ → 繋がらない
10
+
3
- 不要なサビスので、全ての投稿内容を削除します
11
+ エミュレターのWebView → 繋がら
12
+
13
+ エラーメッセージ
14
+
15
+ ERR_NAME_NOT_RESOLVED
16
+
17
+ さらに他のサイトで調べて、DNSサーバを8.8.8.8にすると解決すると書いてあったので、試してみると
18
+
19
+ エミュレーターのブラウザ → 繋がる
20
+
21
+ エミュレーターのWebView → 繋がらない
22
+
23
+ エラーメッセージ
24
+
25
+ ERR_ACCESS_DENIED
26
+
27
+ 上記の通り、エミュレーターのブラウザではネットに接続できるようになり、エラーメッセージが変わりました。
28
+
29
+ WebViewでの接続ができるように調べていたのですが、いまだに解決に至らず、こちらに質問させて頂きました。
30
+
31
+ ぜひ、お力をお貸しください。
32
+
33
+ MainActivity.java
34
+
35
+ ```package com.example.testapp002;
36
+
37
+ import androidx.appcompat.app.AppCompatActivity;
38
+
39
+ import android.os.Bundle;
40
+
41
+ import android.content.Intent;
42
+
43
+ import android.net.Uri;
44
+
45
+ import android.view.KeyEvent;
46
+
47
+ import android.view.View;
48
+
49
+ import android.view.WindowManager;
50
+
51
+ import android.webkit.WebView;
52
+
53
+ import android.widget.Button;
54
+
55
+ public class MainActivity extends AppCompatActivity {
56
+
57
+ private WebView webView;
58
+
59
+ private String accessUrl = "https://akira-watson.com/";
60
+
61
+ @Override
62
+
63
+ protected void onCreate(Bundle savedInstanceState) {
64
+
65
+ super.onCreate(savedInstanceState);
66
+
67
+ setContentView(R.layout.activity_main);
68
+
69
+ Button button1 = findViewById(R.id.button_1);
70
+
71
+ Button button2 = findViewById(R.id.button_2);
72
+
73
+ // WebView
74
+
75
+ button1.setOnClickListener(new View.OnClickListener() {
76
+
77
+ @Override
78
+
79
+ public void onClick(View v) {
80
+
81
+ setContentView(R.layout.web);
82
+
83
+ webView = findViewById(R.id.web_view);
84
+
85
+ // JavaScriptを有効化
86
+
87
+ webView.getSettings().setJavaScriptEnabled(true);
88
+
89
+ // Web Storage を有効化
90
+
91
+ webView.getSettings().setDomStorageEnabled(true);
92
+
93
+ // Hardware Acceleration ON
94
+
95
+ getWindow().setFlags(
96
+
97
+ WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED,
98
+
99
+ WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED);
100
+
101
+ webView.loadUrl(accessUrl);
102
+
103
+ }
104
+
105
+ });
106
+
107
+ // Browser
108
+
109
+ button2.setOnClickListener(new View.OnClickListener() {
110
+
111
+ @Override
112
+
113
+ public void onClick(View v) {
114
+
115
+ Uri uri = Uri.parse(accessUrl);
116
+
117
+ Intent intent = new Intent(Intent.ACTION_VIEW,uri);
118
+
119
+ startActivity(intent);
120
+
121
+ }
122
+
123
+ });
124
+
125
+ }
126
+
127
+ @Override
128
+
129
+ public boolean onKeyDown(int keyCode, KeyEvent event) {
130
+
131
+ // 戻るページがある場合
132
+
133
+ if (event.getAction() == KeyEvent.ACTION_DOWN
134
+
135
+ && keyCode == KeyEvent.KEYCODE_BACK){
136
+
137
+ if(webView.canGoBack()){
138
+
139
+ webView.goBack();
140
+
141
+ }
142
+
143
+ else{
144
+
145
+ finish();
146
+
147
+ }
148
+
149
+ return true;
150
+
151
+ }
152
+
153
+ return super.onKeyDown(keyCode, event);
154
+
155
+ }
156
+
157
+ }
158
+
159
+ ```
160
+
161
+ activity_main.xml
162
+
163
+ ```
164
+
165
+ <?xml version="1.0" encoding="utf-8"?>
166
+
167
+ <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
168
+
169
+ xmlns:tools="http://schemas.android.com/tools"
170
+
171
+ android:layout_width="match_parent"
172
+
173
+ android:layout_height="match_parent"
174
+
175
+ android:orientation="vertical"
176
+
177
+ android:gravity="center"
178
+
179
+ android:background="#dfe"
180
+
181
+ tools:context=".MainActivity">
182
+
183
+ <Button
184
+
185
+ android:id="@+id/button_1"
186
+
187
+ android:text="@string/button1"
188
+
189
+ android:layout_margin="20dp"
190
+
191
+ android:layout_width="match_parent"
192
+
193
+ android:layout_height="wrap_content"/>
194
+
195
+ <Button
196
+
197
+ android:id="@+id/button_2"
198
+
199
+ android:text="@string/button2"
200
+
201
+ android:layout_margin="20dp"
202
+
203
+ android:layout_width="match_parent"
204
+
205
+ android:layout_height="wrap_content"/>
206
+
207
+ </LinearLayout>
208
+
209
+ ```
210
+
211
+ AndroidManifest.xml
212
+
213
+ ```<?xml version="1.0" encoding="utf-8"?>
214
+
215
+ <manifest xmlns:android="http://schemas.android.com/apk/res/android"
216
+
217
+ package="com.example.testapp002">
218
+
219
+ <uses-permission android:name="android.permission.INTERNET" />
220
+
221
+ <application
222
+
223
+ android:allowBackup="true"
224
+
225
+ android:icon="@mipmap/ic_launcher"
226
+
227
+ android:label="@string/app_name"
228
+
229
+ android:roundIcon="@mipmap/ic_launcher_round"
230
+
231
+ android:supportsRtl="true"
232
+
233
+ android:theme="@style/AppTheme"
234
+
235
+ android:usesCleartextTraffic="true"
236
+
237
+ >
238
+
239
+ <activity android:name=".MainActivity">
240
+
241
+ <intent-filter>
242
+
243
+ <action android:name="android.intent.action.MAIN" />
244
+
245
+ <category android:name="android.intent.category.LAUNCHER" />
246
+
247
+ </intent-filter>
248
+
249
+ </activity>
250
+
251
+ </application>
252
+
253
+ </manifest>
254
+
255
+ ```
256
+
257
+ web.xml
258
+
259
+ ```
260
+
261
+ <?xml version="1.0" encoding="utf-8"?>
262
+
263
+ <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
264
+
265
+ android:layout_width="match_parent"
266
+
267
+ android:layout_height="match_parent">
268
+
269
+ <WebView
270
+
271
+ android:id="@+id/web_view"
272
+
273
+ android:layout_width="match_parent"
274
+
275
+ android:layout_height="match_parent">
276
+
277
+ </WebView>
278
+
279
+ </LinearLayout>
280
+
281
+ ```
282
+
283
+ strings.xml
284
+
285
+ ```
286
+
287
+ <resources>
288
+
289
+ <string name="app_name">YourAppName</string>
290
+
291
+ <string name="button1">WebView</string>
292
+
293
+ <string name="button2">Browser</string>
294
+
295
+ </resources>
296
+
297
+ ```
298
+
299
+ エミュレーター
300
+
301
+ ![イメージ説明](4d3ac04e522d5326dcfdc72efd23d41e.png)
302
+
303
+ ビルド画面
304
+
305
+ ![イメージ説明](f4df843e1edc10363de41c37cc6cdd21.png)
306
+
307
+ エラーメッセージ
308
+
309
+ ![イメージ説明](5ffd8ee2f13b1ee5b3558fdc2079a30c.png)
310
+
311
+ Browser画面
312
+
313
+ ![イメージ説明](9185e154427df9693923e287ace09870.png)

3

質問削除します

2021/06/29 05:18

投稿

退会済みユーザー
test CHANGED
@@ -1 +1 @@
1
- AndroidStudioのエミュレーターでWebVIewがネット繋がらない
1
+ 質問を削除することしました
test CHANGED
@@ -1,425 +1,3 @@
1
- Android Studioでアプリ開発をる初心者す。
1
+ 面倒だと思うなら回答なければいのはないでしょうかw
2
2
 
3
-
4
-
5
- ネットで勉強しながら開発しているのですが、以下のサイトを参考にサンプルを作成したところエミュレーターでネットに繋がりませんでした。
6
-
7
-
8
-
9
-
10
-
11
- 【参考にしたサンプルコード】
12
-
13
- [https://akira-watson.com/android/webview.html](https://akira-watson.com/android/webview.html)
14
-
15
-
16
-
17
-
18
-
19
- エミュレーターのブラウザ → 繋がらない
20
-
21
- エミュレターWebView → 繋がらない
3
+ 不要なサビスなで、全ての投稿内容を削除します
22
-
23
-
24
-
25
- エラーメッセージ
26
-
27
- ERR_NAME_NOT_RESOLVED
28
-
29
-
30
-
31
-
32
-
33
- さらに他のサイトで調べて、DNSサーバを8.8.8.8にすると解決すると書いてあったので、試してみると
34
-
35
-
36
-
37
-
38
-
39
- エミュレーターのブラウザ → 繋がる
40
-
41
- エミュレーターのWebView → 繋がらない
42
-
43
-
44
-
45
- エラーメッセージ
46
-
47
- ERR_ACCESS_DENIED
48
-
49
-
50
-
51
-
52
-
53
- 上記の通り、エミュレーターのブラウザではネットに接続できるようになり、エラーメッセージが変わりました。
54
-
55
-
56
-
57
-
58
-
59
- WebViewでの接続ができるように調べていたのですが、いまだに解決に至らず、こちらに質問させて頂きました。
60
-
61
-
62
-
63
-
64
-
65
- ぜひ、お力をお貸しください。
66
-
67
-
68
-
69
-
70
-
71
-
72
-
73
- MainActivity.java
74
-
75
- ```package com.example.testapp002;
76
-
77
-
78
-
79
- import androidx.appcompat.app.AppCompatActivity;
80
-
81
- import android.os.Bundle;
82
-
83
- import android.content.Intent;
84
-
85
- import android.net.Uri;
86
-
87
- import android.view.KeyEvent;
88
-
89
- import android.view.View;
90
-
91
- import android.view.WindowManager;
92
-
93
- import android.webkit.WebView;
94
-
95
- import android.widget.Button;
96
-
97
-
98
-
99
- public class MainActivity extends AppCompatActivity {
100
-
101
-
102
-
103
-
104
-
105
- private WebView webView;
106
-
107
- private String accessUrl = "https://akira-watson.com/";
108
-
109
-
110
-
111
- @Override
112
-
113
- protected void onCreate(Bundle savedInstanceState) {
114
-
115
- super.onCreate(savedInstanceState);
116
-
117
- setContentView(R.layout.activity_main);
118
-
119
-
120
-
121
- Button button1 = findViewById(R.id.button_1);
122
-
123
- Button button2 = findViewById(R.id.button_2);
124
-
125
-
126
-
127
- // WebView
128
-
129
- button1.setOnClickListener(new View.OnClickListener() {
130
-
131
- @Override
132
-
133
- public void onClick(View v) {
134
-
135
-
136
-
137
- setContentView(R.layout.web);
138
-
139
- webView = findViewById(R.id.web_view);
140
-
141
-
142
-
143
- // JavaScriptを有効化
144
-
145
- webView.getSettings().setJavaScriptEnabled(true);
146
-
147
-
148
-
149
- // Web Storage を有効化
150
-
151
- webView.getSettings().setDomStorageEnabled(true);
152
-
153
-
154
-
155
- // Hardware Acceleration ON
156
-
157
- getWindow().setFlags(
158
-
159
- WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED,
160
-
161
- WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED);
162
-
163
-
164
-
165
- webView.loadUrl(accessUrl);
166
-
167
- }
168
-
169
- });
170
-
171
-
172
-
173
- // Browser
174
-
175
- button2.setOnClickListener(new View.OnClickListener() {
176
-
177
- @Override
178
-
179
- public void onClick(View v) {
180
-
181
- Uri uri = Uri.parse(accessUrl);
182
-
183
- Intent intent = new Intent(Intent.ACTION_VIEW,uri);
184
-
185
- startActivity(intent);
186
-
187
- }
188
-
189
- });
190
-
191
- }
192
-
193
-
194
-
195
- @Override
196
-
197
- public boolean onKeyDown(int keyCode, KeyEvent event) {
198
-
199
- // 戻るページがある場合
200
-
201
- if (event.getAction() == KeyEvent.ACTION_DOWN
202
-
203
- && keyCode == KeyEvent.KEYCODE_BACK){
204
-
205
- if(webView.canGoBack()){
206
-
207
- webView.goBack();
208
-
209
- }
210
-
211
- else{
212
-
213
- finish();
214
-
215
- }
216
-
217
- return true;
218
-
219
- }
220
-
221
-
222
-
223
- return super.onKeyDown(keyCode, event);
224
-
225
- }
226
-
227
- }
228
-
229
-
230
-
231
- ```
232
-
233
-
234
-
235
- activity_main.xml
236
-
237
- ```
238
-
239
- <?xml version="1.0" encoding="utf-8"?>
240
-
241
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
242
-
243
- xmlns:tools="http://schemas.android.com/tools"
244
-
245
- android:layout_width="match_parent"
246
-
247
- android:layout_height="match_parent"
248
-
249
- android:orientation="vertical"
250
-
251
- android:gravity="center"
252
-
253
- android:background="#dfe"
254
-
255
- tools:context=".MainActivity">
256
-
257
-
258
-
259
- <Button
260
-
261
- android:id="@+id/button_1"
262
-
263
- android:text="@string/button1"
264
-
265
- android:layout_margin="20dp"
266
-
267
- android:layout_width="match_parent"
268
-
269
- android:layout_height="wrap_content"/>
270
-
271
-
272
-
273
- <Button
274
-
275
- android:id="@+id/button_2"
276
-
277
- android:text="@string/button2"
278
-
279
- android:layout_margin="20dp"
280
-
281
- android:layout_width="match_parent"
282
-
283
- android:layout_height="wrap_content"/>
284
-
285
-
286
-
287
- </LinearLayout>
288
-
289
- ```
290
-
291
-
292
-
293
-
294
-
295
-
296
-
297
-
298
-
299
- AndroidManifest.xml
300
-
301
- ```<?xml version="1.0" encoding="utf-8"?>
302
-
303
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
304
-
305
- package="com.example.testapp002">
306
-
307
-
308
-
309
- <uses-permission android:name="android.permission.INTERNET" />
310
-
311
-
312
-
313
- <application
314
-
315
- android:allowBackup="true"
316
-
317
- android:icon="@mipmap/ic_launcher"
318
-
319
- android:label="@string/app_name"
320
-
321
- android:roundIcon="@mipmap/ic_launcher_round"
322
-
323
- android:supportsRtl="true"
324
-
325
- android:theme="@style/AppTheme"
326
-
327
- android:usesCleartextTraffic="true"
328
-
329
- >
330
-
331
- <activity android:name=".MainActivity">
332
-
333
- <intent-filter>
334
-
335
- <action android:name="android.intent.action.MAIN" />
336
-
337
-
338
-
339
- <category android:name="android.intent.category.LAUNCHER" />
340
-
341
- </intent-filter>
342
-
343
- </activity>
344
-
345
- </application>
346
-
347
-
348
-
349
- </manifest>
350
-
351
- ```
352
-
353
-
354
-
355
- web.xml
356
-
357
- ```
358
-
359
- <?xml version="1.0" encoding="utf-8"?>
360
-
361
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
362
-
363
- android:layout_width="match_parent"
364
-
365
- android:layout_height="match_parent">
366
-
367
- <WebView
368
-
369
- android:id="@+id/web_view"
370
-
371
- android:layout_width="match_parent"
372
-
373
- android:layout_height="match_parent">
374
-
375
- </WebView>
376
-
377
-
378
-
379
- </LinearLayout>
380
-
381
- ```
382
-
383
-
384
-
385
- strings.xml
386
-
387
- ```
388
-
389
- <resources>
390
-
391
- <string name="app_name">YourAppName</string>
392
-
393
- <string name="button1">WebView</string>
394
-
395
- <string name="button2">Browser</string>
396
-
397
- </resources>
398
-
399
-
400
-
401
- ```
402
-
403
-
404
-
405
- エミュレーター
406
-
407
- ![イメージ説明](4d3ac04e522d5326dcfdc72efd23d41e.png)
408
-
409
-
410
-
411
- ビルド画面
412
-
413
- ![イメージ説明](f4df843e1edc10363de41c37cc6cdd21.png)
414
-
415
-
416
-
417
- エラーメッセージ
418
-
419
- ![イメージ説明](5ffd8ee2f13b1ee5b3558fdc2079a30c.png)
420
-
421
-
422
-
423
- Browser画面
424
-
425
- ![イメージ説明](9185e154427df9693923e287ace09870.png)

2

誤字修正

2021/06/28 13:29

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -324,7 +324,7 @@
324
324
 
325
325
  android:theme="@style/AppTheme"
326
326
 
327
-
327
+ android:usesCleartextTraffic="true"
328
328
 
329
329
  >
330
330
 

1

現在のソースの追記

2020/03/03 16:56

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -63,3 +63,363 @@
63
63
 
64
64
 
65
65
  ぜひ、お力をお貸しください。
66
+
67
+
68
+
69
+
70
+
71
+
72
+
73
+ MainActivity.java
74
+
75
+ ```package com.example.testapp002;
76
+
77
+
78
+
79
+ import androidx.appcompat.app.AppCompatActivity;
80
+
81
+ import android.os.Bundle;
82
+
83
+ import android.content.Intent;
84
+
85
+ import android.net.Uri;
86
+
87
+ import android.view.KeyEvent;
88
+
89
+ import android.view.View;
90
+
91
+ import android.view.WindowManager;
92
+
93
+ import android.webkit.WebView;
94
+
95
+ import android.widget.Button;
96
+
97
+
98
+
99
+ public class MainActivity extends AppCompatActivity {
100
+
101
+
102
+
103
+
104
+
105
+ private WebView webView;
106
+
107
+ private String accessUrl = "https://akira-watson.com/";
108
+
109
+
110
+
111
+ @Override
112
+
113
+ protected void onCreate(Bundle savedInstanceState) {
114
+
115
+ super.onCreate(savedInstanceState);
116
+
117
+ setContentView(R.layout.activity_main);
118
+
119
+
120
+
121
+ Button button1 = findViewById(R.id.button_1);
122
+
123
+ Button button2 = findViewById(R.id.button_2);
124
+
125
+
126
+
127
+ // WebView
128
+
129
+ button1.setOnClickListener(new View.OnClickListener() {
130
+
131
+ @Override
132
+
133
+ public void onClick(View v) {
134
+
135
+
136
+
137
+ setContentView(R.layout.web);
138
+
139
+ webView = findViewById(R.id.web_view);
140
+
141
+
142
+
143
+ // JavaScriptを有効化
144
+
145
+ webView.getSettings().setJavaScriptEnabled(true);
146
+
147
+
148
+
149
+ // Web Storage を有効化
150
+
151
+ webView.getSettings().setDomStorageEnabled(true);
152
+
153
+
154
+
155
+ // Hardware Acceleration ON
156
+
157
+ getWindow().setFlags(
158
+
159
+ WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED,
160
+
161
+ WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED);
162
+
163
+
164
+
165
+ webView.loadUrl(accessUrl);
166
+
167
+ }
168
+
169
+ });
170
+
171
+
172
+
173
+ // Browser
174
+
175
+ button2.setOnClickListener(new View.OnClickListener() {
176
+
177
+ @Override
178
+
179
+ public void onClick(View v) {
180
+
181
+ Uri uri = Uri.parse(accessUrl);
182
+
183
+ Intent intent = new Intent(Intent.ACTION_VIEW,uri);
184
+
185
+ startActivity(intent);
186
+
187
+ }
188
+
189
+ });
190
+
191
+ }
192
+
193
+
194
+
195
+ @Override
196
+
197
+ public boolean onKeyDown(int keyCode, KeyEvent event) {
198
+
199
+ // 戻るページがある場合
200
+
201
+ if (event.getAction() == KeyEvent.ACTION_DOWN
202
+
203
+ && keyCode == KeyEvent.KEYCODE_BACK){
204
+
205
+ if(webView.canGoBack()){
206
+
207
+ webView.goBack();
208
+
209
+ }
210
+
211
+ else{
212
+
213
+ finish();
214
+
215
+ }
216
+
217
+ return true;
218
+
219
+ }
220
+
221
+
222
+
223
+ return super.onKeyDown(keyCode, event);
224
+
225
+ }
226
+
227
+ }
228
+
229
+
230
+
231
+ ```
232
+
233
+
234
+
235
+ activity_main.xml
236
+
237
+ ```
238
+
239
+ <?xml version="1.0" encoding="utf-8"?>
240
+
241
+ <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
242
+
243
+ xmlns:tools="http://schemas.android.com/tools"
244
+
245
+ android:layout_width="match_parent"
246
+
247
+ android:layout_height="match_parent"
248
+
249
+ android:orientation="vertical"
250
+
251
+ android:gravity="center"
252
+
253
+ android:background="#dfe"
254
+
255
+ tools:context=".MainActivity">
256
+
257
+
258
+
259
+ <Button
260
+
261
+ android:id="@+id/button_1"
262
+
263
+ android:text="@string/button1"
264
+
265
+ android:layout_margin="20dp"
266
+
267
+ android:layout_width="match_parent"
268
+
269
+ android:layout_height="wrap_content"/>
270
+
271
+
272
+
273
+ <Button
274
+
275
+ android:id="@+id/button_2"
276
+
277
+ android:text="@string/button2"
278
+
279
+ android:layout_margin="20dp"
280
+
281
+ android:layout_width="match_parent"
282
+
283
+ android:layout_height="wrap_content"/>
284
+
285
+
286
+
287
+ </LinearLayout>
288
+
289
+ ```
290
+
291
+
292
+
293
+
294
+
295
+
296
+
297
+
298
+
299
+ AndroidManifest.xml
300
+
301
+ ```<?xml version="1.0" encoding="utf-8"?>
302
+
303
+ <manifest xmlns:android="http://schemas.android.com/apk/res/android"
304
+
305
+ package="com.example.testapp002">
306
+
307
+
308
+
309
+ <uses-permission android:name="android.permission.INTERNET" />
310
+
311
+
312
+
313
+ <application
314
+
315
+ android:allowBackup="true"
316
+
317
+ android:icon="@mipmap/ic_launcher"
318
+
319
+ android:label="@string/app_name"
320
+
321
+ android:roundIcon="@mipmap/ic_launcher_round"
322
+
323
+ android:supportsRtl="true"
324
+
325
+ android:theme="@style/AppTheme"
326
+
327
+
328
+
329
+ >
330
+
331
+ <activity android:name=".MainActivity">
332
+
333
+ <intent-filter>
334
+
335
+ <action android:name="android.intent.action.MAIN" />
336
+
337
+
338
+
339
+ <category android:name="android.intent.category.LAUNCHER" />
340
+
341
+ </intent-filter>
342
+
343
+ </activity>
344
+
345
+ </application>
346
+
347
+
348
+
349
+ </manifest>
350
+
351
+ ```
352
+
353
+
354
+
355
+ web.xml
356
+
357
+ ```
358
+
359
+ <?xml version="1.0" encoding="utf-8"?>
360
+
361
+ <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
362
+
363
+ android:layout_width="match_parent"
364
+
365
+ android:layout_height="match_parent">
366
+
367
+ <WebView
368
+
369
+ android:id="@+id/web_view"
370
+
371
+ android:layout_width="match_parent"
372
+
373
+ android:layout_height="match_parent">
374
+
375
+ </WebView>
376
+
377
+
378
+
379
+ </LinearLayout>
380
+
381
+ ```
382
+
383
+
384
+
385
+ strings.xml
386
+
387
+ ```
388
+
389
+ <resources>
390
+
391
+ <string name="app_name">YourAppName</string>
392
+
393
+ <string name="button1">WebView</string>
394
+
395
+ <string name="button2">Browser</string>
396
+
397
+ </resources>
398
+
399
+
400
+
401
+ ```
402
+
403
+
404
+
405
+ エミュレーター
406
+
407
+ ![イメージ説明](4d3ac04e522d5326dcfdc72efd23d41e.png)
408
+
409
+
410
+
411
+ ビルド画面
412
+
413
+ ![イメージ説明](f4df843e1edc10363de41c37cc6cdd21.png)
414
+
415
+
416
+
417
+ エラーメッセージ
418
+
419
+ ![イメージ説明](5ffd8ee2f13b1ee5b3558fdc2079a30c.png)
420
+
421
+
422
+
423
+ Browser画面
424
+
425
+ ![イメージ説明](9185e154427df9693923e287ace09870.png)