質問編集履歴
1
詳細の追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,6 +1,36 @@
|
|
1
1
|
### 前提・実現したいこと
|
2
2
|
|
3
3
|
AndroidStudioとKotlinで、サーバから受け取ったHTMLをWebViewに表示するAndroidスマホ用アプリを作りたいです。
|
4
|
+
|
5
|
+
```AndroidStudio
|
6
|
+
|
7
|
+
Android Studio 4.0
|
8
|
+
|
9
|
+
Build #AI-193.6911.18.40.6514223, built on May 21, 2020
|
10
|
+
|
11
|
+
8.1 Oreo
|
12
|
+
|
13
|
+
supportLibVersion = "28.0.0"
|
14
|
+
|
15
|
+
playServicesVersion = "18.0.0"
|
16
|
+
|
17
|
+
archRoomVersion = "1.0.0-alpha9-1"
|
18
|
+
|
19
|
+
constraintLayoutVersion = "1.1.3"
|
20
|
+
|
21
|
+
roomVersion = '1.1.1'
|
22
|
+
|
23
|
+
androidArchitectureVersion = "1.1.1"
|
24
|
+
|
25
|
+
lifecycleVersion = "2.0.0"
|
26
|
+
|
27
|
+
kotlinVersion = "1.3.31"
|
28
|
+
|
29
|
+
kotlinReflectVersion = "1.3.11"
|
30
|
+
|
31
|
+
kotlinCoroutinesVersion = "1.3.5"
|
32
|
+
|
33
|
+
```
|
4
34
|
|
5
35
|
|
6
36
|
|
@@ -42,6 +72,26 @@
|
|
42
72
|
|
43
73
|
```
|
44
74
|
|
75
|
+
```Xml
|
76
|
+
|
77
|
+
<WebView
|
78
|
+
|
79
|
+
android:id="@+id/webview"
|
80
|
+
|
81
|
+
android:layout_width="match_parent"
|
82
|
+
|
83
|
+
android:layout_height="0dp"
|
84
|
+
|
85
|
+
app:layout_constraintBottom_toBottomOf="parent"
|
86
|
+
|
87
|
+
app:layout_constraintEnd_toEndOf="parent"
|
88
|
+
|
89
|
+
app:layout_constraintStart_toStartOf="parent"
|
90
|
+
|
91
|
+
app:layout_constraintTop_toTopOf="parent" />
|
92
|
+
|
93
|
+
```
|
94
|
+
|
45
95
|
|
46
96
|
|
47
97
|
### 試したこと
|