質問編集履歴
2
activity_main.xmlを貼りました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -204,6 +204,84 @@
|
|
204
204
|
|
205
205
|
```
|
206
206
|
|
207
|
+
```ここに言語を入力
|
208
|
+
|
209
|
+
<?xml version="1.0" encoding="utf-8"?>
|
210
|
+
|
211
|
+
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
212
|
+
|
213
|
+
xmlns:app="http://schemas.android.com/apk/res-auto"
|
214
|
+
|
215
|
+
xmlns:tools="http://schemas.android.com/tools"
|
216
|
+
|
217
|
+
android:id="@+id/messageTextView"
|
218
|
+
|
219
|
+
android:layout_width="match_parent"
|
220
|
+
|
221
|
+
android:layout_height="match_parent"
|
222
|
+
|
223
|
+
tools:context=".MainActivity">
|
224
|
+
|
225
|
+
|
226
|
+
|
227
|
+
<TextView
|
228
|
+
|
229
|
+
android:id="@+id/textView"
|
230
|
+
|
231
|
+
android:layout_width="68dp"
|
232
|
+
|
233
|
+
android:layout_height="35dp"
|
234
|
+
|
235
|
+
android:text="@string/message_text"
|
236
|
+
|
237
|
+
android:textSize="36sp"
|
238
|
+
|
239
|
+
android:textStyle="bold"
|
240
|
+
|
241
|
+
app:layout_constraintBottom_toBottomOf="parent"
|
242
|
+
|
243
|
+
app:layout_constraintEnd_toEndOf="parent"
|
244
|
+
|
245
|
+
app:layout_constraintHorizontal_bias="0.5"
|
246
|
+
|
247
|
+
app:layout_constraintStart_toStartOf="parent"
|
248
|
+
|
249
|
+
app:layout_constraintTop_toTopOf="parent" />
|
250
|
+
|
251
|
+
|
252
|
+
|
253
|
+
<Button
|
254
|
+
|
255
|
+
android:id="@+id/changeButton"
|
256
|
+
|
257
|
+
android:layout_width="wrap_content"
|
258
|
+
|
259
|
+
android:layout_height="wrap_content"
|
260
|
+
|
261
|
+
android:layout_marginTop="32dp"
|
262
|
+
|
263
|
+
android:onClick="changeTextView"
|
264
|
+
|
265
|
+
android:text="@string/button_text"
|
266
|
+
|
267
|
+
app:layout_constraintBottom_toBottomOf="parent"
|
268
|
+
|
269
|
+
app:layout_constraintEnd_toEndOf="parent"
|
270
|
+
|
271
|
+
app:layout_constraintHorizontal_bias="0.498"
|
272
|
+
|
273
|
+
app:layout_constraintStart_toStartOf="parent"
|
274
|
+
|
275
|
+
app:layout_constraintTop_toBottomOf="@+id/textView"
|
276
|
+
|
277
|
+
app:layout_constraintVertical_bias="0.24" />
|
278
|
+
|
279
|
+
|
280
|
+
|
281
|
+
</androidx.constraintlayout.widget.ConstraintLayout>
|
282
|
+
|
283
|
+
```
|
284
|
+
|
207
285
|
|
208
286
|
|
209
287
|
### 試したこと
|
1
markdown機能を使ってコードを上げなおしました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -22,7 +22,7 @@
|
|
22
22
|
|
23
23
|
### 該当のソースコード
|
24
24
|
|
25
|
-
|
25
|
+
```ここに言語を入力
|
26
26
|
|
27
27
|
package com.example.myfirstapp
|
28
28
|
|
@@ -58,9 +58,9 @@
|
|
58
58
|
|
59
59
|
}
|
60
60
|
|
61
|
-
|
61
|
+
```
|
62
|
+
|
62
|
-
|
63
|
+
```ここに言語を入力
|
63
|
-
|
64
64
|
|
65
65
|
plugins {
|
66
66
|
|
@@ -150,7 +150,11 @@
|
|
150
150
|
|
151
151
|
}
|
152
152
|
|
153
|
-
|
153
|
+
```
|
154
|
+
|
155
|
+
|
156
|
+
|
157
|
+
```ここに言語を入力
|
154
158
|
|
155
159
|
<?xml version="1.0" encoding="utf-8"?>
|
156
160
|
|
@@ -198,6 +202,10 @@
|
|
198
202
|
|
199
203
|
</manifest>
|
200
204
|
|
205
|
+
```
|
206
|
+
|
207
|
+
|
208
|
+
|
201
209
|
### 試したこと
|
202
210
|
|
203
211
|
|