質問編集履歴
2
記述ミスの修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -11,10 +11,6 @@
|
|
11
11
|
|
12
12
|
|
13
13
|
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
```
|
18
14
|
|
19
15
|
### 該当のソースコード
|
20
16
|
|
1
不要なコード削除
test
CHANGED
File without changes
|
test
CHANGED
@@ -14,117 +14,9 @@
|
|
14
14
|
|
15
15
|
|
16
16
|
|
17
|
-
### 該当のソースコード1
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
```xml
|
22
|
-
|
23
|
-
<?xml version="1.0" encoding="utf-8"?>
|
24
|
-
|
25
|
-
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
26
|
-
|
27
|
-
xmlns:app="http://schemas.android.com/apk/res-auto"
|
28
|
-
|
29
|
-
xmlns:tools="http://schemas.android.com/tools"
|
30
|
-
|
31
|
-
android:layout_width="match_parent"
|
32
|
-
|
33
|
-
android:layout_height="match_parent"
|
34
|
-
|
35
|
-
tools:context=".MainActivity">
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
<TextView
|
40
|
-
|
41
|
-
android:id="@+id/textView"
|
42
|
-
|
43
|
-
android:layout_width="wrap_content"
|
44
|
-
|
45
|
-
android:layout_height="wrap_content"
|
46
|
-
|
47
|
-
android:text="00:00.00"
|
48
|
-
|
49
|
-
android:textSize="50sp"
|
50
|
-
|
51
|
-
android:textStyle="bold"
|
52
|
-
|
53
|
-
app:layout_constraintBottom_toBottomOf="parent"
|
54
|
-
|
55
|
-
app:layout_constraintLeft_toLeftOf="parent"
|
56
|
-
|
57
|
-
app:layout_constraintRight_toRightOf="parent"
|
58
|
-
|
59
|
-
app:layout_constraintTop_toTopOf="parent" />
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
<Button
|
64
|
-
|
65
|
-
android:id="@+id/startButton"
|
66
|
-
|
67
|
-
android:layout_width="wrap_content"
|
68
|
-
|
69
|
-
android:layout_height="wrap_content"
|
70
|
-
|
71
|
-
android:text="START"
|
72
|
-
|
73
|
-
app:layout_constraintBottom_toBottomOf="parent"
|
74
|
-
|
75
|
-
app:layout_constraintEnd_toStartOf="@+id/stopButton"
|
76
|
-
|
77
|
-
app:layout_constraintHorizontal_bias="0.5"
|
78
|
-
|
79
|
-
app:layout_constraintStart_toStartOf="parent" />
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
<Button
|
84
|
-
|
85
|
-
android:id="@+id/stopButton"
|
86
|
-
|
87
|
-
android:layout_width="wrap_content"
|
88
|
-
|
89
|
-
android:layout_height="wrap_content"
|
90
|
-
|
91
|
-
android:text="STOP"
|
92
|
-
|
93
|
-
app:layout_constraintBottom_toBottomOf="parent"
|
94
|
-
|
95
|
-
app:layout_constraintEnd_toStartOf="@+id/restartButton"
|
96
|
-
|
97
|
-
app:layout_constraintHorizontal_bias="0.5"
|
98
|
-
|
99
|
-
app:layout_constraintStart_toEndOf="@+id/startButton" />
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
<Button
|
104
|
-
|
105
|
-
android:id="@+id/restartButton"
|
106
|
-
|
107
|
-
android:layout_width="wrap_content"
|
108
|
-
|
109
|
-
android:layout_height="wrap_content"
|
110
|
-
|
111
|
-
android:text="RESTART"
|
112
|
-
|
113
|
-
app:layout_constraintBottom_toBottomOf="parent"
|
114
|
-
|
115
|
-
app:layout_constraintEnd_toEndOf="parent"
|
116
|
-
|
117
|
-
app:layout_constraintHorizontal_bias="0.5"
|
118
|
-
|
119
|
-
app:layout_constraintStart_toEndOf="@+id/stopButton" />
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
</androidx.constraintlayout.widget.ConstraintLayout>
|
124
|
-
|
125
17
|
```
|
126
18
|
|
127
|
-
### 該当のソースコード
|
19
|
+
### 該当のソースコード
|
128
20
|
|
129
21
|
|
130
22
|
|