###前提・実現したいこと
Android studioでデザインでは全体のレイアウトが中央寄りに表示されているのに、エミュレータだと左寄りに表示されるので中央寄りに表示したい。
###該当のソースコード
java
1<?xml version="1.0" encoding="utf-8"?> 2<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 xmlns:app="http://schemas.android.com/apk/res-auto" 4 xmlns:tools="http://schemas.android.com/tools" 5 android:layout_width="match_parent" 6 android:layout_height="match_parent" 7 android:background="@drawable/background" 8 app:layout_behavior="@string/appbar_scrolling_view_behavior" 9 tools:context="com.app.urasinrigaku.MainActivity" 10 tools:showIn="@layout/activity_main"> 11 12 <LinearLayout 13 android:layout_width="345dp" 14 android:layout_height="491dp" 15 android:orientation="vertical" 16 android:weightSum="1" 17 tools:layout_editor_absoluteX="8dp" 18 tools:layout_editor_absoluteY="10dp"> 19 20 <TextView 21 android:id="@+id/textView" 22 android:layout_width="match_parent" 23 android:layout_height="351dp" 24 android:gravity="center" 25 android:text="TextView" 26 tools:layout_editor_absoluteX="8dp" 27 tools:layout_editor_absoluteY="16dp" /> 28 29 <Button 30 android:id="@+id/button" 31 android:layout_width="match_parent" 32 android:layout_height="wrap_content" 33 android:background="@drawable/marubutton" 34 android:onClick="onbuttonClick" 35 android:text="STRAT" 36 android:textSize="24sp" 37 tools:layout_editor_absoluteX="8dp" 38 tools:layout_editor_absoluteY="350dp" /> 39 </LinearLayout> 40 41</android.support.constraint.ConstraintLayout> 42 43
その質問の内容だけで回答できると思いますか?レイアウトファイルを追記してください。
回答1件
あなたの回答
tips
プレビュー