AndroidStudio上では左のような表示できれいに整っていたのですが、
エミュレータで実行してみると右のように表示が崩れてしまいました。
解決方法をご存じの方がいらっしゃれば、ご教示お願い致します。
<?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".HeightActivity"> <TextView android:id="@+id/textView" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="身長" tools:layout_editor_absoluteX="16dp" tools:layout_editor_absoluteY="16dp" /> <TextView android:id="@+id/height" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="170" android:textAppearance="@style/TextAppearance.AppCompat.Large" android:textSize="36sp" tools:layout_editor_absoluteX="176dp" tools:layout_editor_absoluteY="68dp" /> <Spinner android:id="@+id/spinner" android:layout_width="100dp" android:layout_height="48dp" android:entries="@array/txt_height_arr" tools:layout_editor_absoluteX="24dp" tools:layout_editor_absoluteY="149dp" /> <SeekBar android:id="@+id/seekBar" android:layout_width="411dp" android:layout_height="24dp" android:max="200" android:progress="160" tools:layout_editor_absoluteY="197dp" /> <RadioGroup android:id="@+id/radioGroup" android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="horizontal" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@+id/seekBar"> <RadioButton android:id="@+id/height1" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="140" /> <RadioButton android:id="@+id/height2" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="150" /> <RadioButton android:id="@+id/height3" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="160" /> <RadioButton android:id="@+id/height4" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="170" /> </RadioGroup> </androidx.constraintlayout.widget.ConstraintLayout>
回答1件
あなたの回答
tips
プレビュー