質問編集履歴

1

xmlファイルの追加

2019/05/23 02:26

投稿

HAMSANDROS
HAMSANDROS

スコア6

test CHANGED
File without changes
test CHANGED
@@ -94,6 +94,94 @@
94
94
 
95
95
 
96
96
 
97
+ ### XML
98
+
99
+
100
+
101
+ <?xml version="1.0" encoding="utf-8"?>
102
+
103
+ <android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
104
+
105
+ xmlns:app="http://schemas.android.com/apk/res-auto"
106
+
107
+ xmlns:tools="http://schemas.android.com/tools"
108
+
109
+ android:layout_width="match_parent"
110
+
111
+ android:layout_height="match_parent"
112
+
113
+ tools:context=".MainActivity">
114
+
115
+
116
+
117
+ <ImageView
118
+
119
+ android:id="@+id/imageview1"
120
+
121
+ android:layout_width="1169dp"
122
+
123
+ android:layout_height="754dp"
124
+
125
+ android:layout_alignParentTop="true"
126
+
127
+ android:layout_marginBottom="8dp"
128
+
129
+ android:layout_marginEnd="8dp"
130
+
131
+ android:layout_marginLeft="8dp"
132
+
133
+ android:layout_marginRight="8dp"
134
+
135
+ android:layout_marginStart="8dp"
136
+
137
+ android:contentDescription="TODO"
138
+
139
+ android:src="@drawable/town"
140
+
141
+ app:layout_constraintBottom_toBottomOf="parent"
142
+
143
+ app:layout_constraintEnd_toEndOf="parent"
144
+
145
+ app:layout_constraintHorizontal_bias="0.734"
146
+
147
+ app:layout_constraintStart_toStartOf="parent"
148
+
149
+ app:layout_constraintTop_toTopOf="parent"
150
+
151
+ app:layout_constraintVertical_bias="0.0" />
152
+
153
+
154
+
155
+ <ImageButton
156
+
157
+ android:id="@+id/imageButton3"
158
+
159
+ android:layout_width="383dp"
160
+
161
+ android:layout_height="141dp"
162
+
163
+ android:layout_marginBottom="16dp"
164
+
165
+ android:background="none"
166
+
167
+ app:layout_constraintBottom_toBottomOf="parent"
168
+
169
+ app:layout_constraintEnd_toEndOf="parent"
170
+
171
+ app:layout_constraintHorizontal_bias="1.0"
172
+
173
+ app:layout_constraintStart_toStartOf="parent"
174
+
175
+ app:srcCompat="@drawable/startBottn"
176
+
177
+ tools:ignore="MissingConstraints" />
178
+
179
+
180
+
181
+ </android.support.constraint.ConstraintLayout>
182
+
183
+
184
+
97
185
  ### 試したこと
98
186
 
99
187