回答編集履歴
1
変更後を追記しました。
answer
CHANGED
@@ -12,4 +12,18 @@
|
|
12
12
|
中略
|
13
13
|
|
14
14
|
</android.support.constraint.ConstraintLayout>
|
15
|
+
```
|
16
|
+
↓
|
17
|
+
```
|
18
|
+
<?xml version="1.0" encoding="utf-8"?>
|
19
|
+
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
20
|
+
xmlns:app="http://schemas.android.com/apk/res-auto"
|
21
|
+
xmlns:tools="http://schemas.android.com/tools"
|
22
|
+
android:layout_width="match_parent"
|
23
|
+
android:layout_height="match_parent"
|
24
|
+
tools:context="com.example.mi_1488.myapplication.MainActivity">
|
25
|
+
|
26
|
+
中略
|
27
|
+
|
28
|
+
</RelativeLayout>
|
15
29
|
```
|