質問編集履歴
1
すいませんレイアウトのソースコード追記しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,3 +1,105 @@
|
|
1
1
|
###前提・実現したいこと
|
2
2
|
|
3
3
|
Android studioでデザインでは全体のレイアウトが中央寄りに表示されているのに、エミュレータだと左寄りに表示されるので中央寄りに表示したい。
|
4
|
+
|
5
|
+
|
6
|
+
|
7
|
+
|
8
|
+
|
9
|
+
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
###該当のソースコード
|
16
|
+
|
17
|
+
```java
|
18
|
+
|
19
|
+
<?xml version="1.0" encoding="utf-8"?>
|
20
|
+
|
21
|
+
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
22
|
+
|
23
|
+
xmlns:app="http://schemas.android.com/apk/res-auto"
|
24
|
+
|
25
|
+
xmlns:tools="http://schemas.android.com/tools"
|
26
|
+
|
27
|
+
android:layout_width="match_parent"
|
28
|
+
|
29
|
+
android:layout_height="match_parent"
|
30
|
+
|
31
|
+
android:background="@drawable/background"
|
32
|
+
|
33
|
+
app:layout_behavior="@string/appbar_scrolling_view_behavior"
|
34
|
+
|
35
|
+
tools:context="com.app.urasinrigaku.MainActivity"
|
36
|
+
|
37
|
+
tools:showIn="@layout/activity_main">
|
38
|
+
|
39
|
+
|
40
|
+
|
41
|
+
<LinearLayout
|
42
|
+
|
43
|
+
android:layout_width="345dp"
|
44
|
+
|
45
|
+
android:layout_height="491dp"
|
46
|
+
|
47
|
+
android:orientation="vertical"
|
48
|
+
|
49
|
+
android:weightSum="1"
|
50
|
+
|
51
|
+
tools:layout_editor_absoluteX="8dp"
|
52
|
+
|
53
|
+
tools:layout_editor_absoluteY="10dp">
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
<TextView
|
58
|
+
|
59
|
+
android:id="@+id/textView"
|
60
|
+
|
61
|
+
android:layout_width="match_parent"
|
62
|
+
|
63
|
+
android:layout_height="351dp"
|
64
|
+
|
65
|
+
android:gravity="center"
|
66
|
+
|
67
|
+
android:text="TextView"
|
68
|
+
|
69
|
+
tools:layout_editor_absoluteX="8dp"
|
70
|
+
|
71
|
+
tools:layout_editor_absoluteY="16dp" />
|
72
|
+
|
73
|
+
|
74
|
+
|
75
|
+
<Button
|
76
|
+
|
77
|
+
android:id="@+id/button"
|
78
|
+
|
79
|
+
android:layout_width="match_parent"
|
80
|
+
|
81
|
+
android:layout_height="wrap_content"
|
82
|
+
|
83
|
+
android:background="@drawable/marubutton"
|
84
|
+
|
85
|
+
android:onClick="onbuttonClick"
|
86
|
+
|
87
|
+
android:text="STRAT"
|
88
|
+
|
89
|
+
android:textSize="24sp"
|
90
|
+
|
91
|
+
tools:layout_editor_absoluteX="8dp"
|
92
|
+
|
93
|
+
tools:layout_editor_absoluteY="350dp" />
|
94
|
+
|
95
|
+
</LinearLayout>
|
96
|
+
|
97
|
+
|
98
|
+
|
99
|
+
</android.support.constraint.ConstraintLayout>
|
100
|
+
|
101
|
+
|
102
|
+
|
103
|
+
|
104
|
+
|
105
|
+
```
|