質問編集履歴
1
言語名の部分をXML→xml(大文字から小文字)に変更しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -54,7 +54,7 @@
|
|
54
54
|
|
55
55
|
```
|
56
56
|
activity_main.xml
|
57
|
-
```
|
57
|
+
```xml
|
58
58
|
<?xml version="1.0" encoding="utf-8"?>
|
59
59
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
60
60
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
@@ -78,7 +78,7 @@
|
|
78
78
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
79
79
|
```
|
80
80
|
fragment_main.xml
|
81
|
-
```
|
81
|
+
```xml
|
82
82
|
<?xml version="1.0" encoding="utf-8"?>
|
83
83
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
84
84
|
xmlns:tools="http://schemas.android.com/tools"
|
@@ -99,13 +99,13 @@
|
|
99
99
|
</LinearLayout>
|
100
100
|
```
|
101
101
|
string.xml
|
102
|
-
```
|
102
|
+
```xml
|
103
103
|
<resources>
|
104
104
|
<string name="app_name">FragmentEasy</string>
|
105
105
|
</resources>
|
106
106
|
```
|
107
107
|
AndroidManifest.xml
|
108
|
-
```
|
108
|
+
```xml
|
109
109
|
<?xml version="1.0" encoding="utf-8"?>
|
110
110
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
111
111
|
|