問題とその背景
現在Androidタイマーアプリのレイアウトをつくっています。
フラグメントを3つつくって、NavigatorControllerを使ってそれぞれ遷移させているのですが、作成したフラグメントのレイアウト(ボタンやテキストの位置)が変更できなくなりました。
そのためすべての要素が左上に集中したまま動かせなくなっています。
XMLファイルのコードとレイアウト
timerset_fragment
1<?xml version="1.0" encoding="utf-8"?> 2<FrameLayout 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 tools:context=".ui.alertset.TimersetFragment"> 8 9 <TextView 10 android:id="@+id/AlertSetTitle" 11 android:layout_width="324dp" 12 android:layout_height="41dp" 13 android:text="@string/AlertSetTitle" 14 android:textSize="30sp" 15 app:layout_constraintBottom_toTopOf="@+id/SetTime" 16 app:layout_constraintEnd_toEndOf="parent" 17 app:layout_constraintHorizontal_bias="0.494" 18 app:layout_constraintStart_toStartOf="parent" 19 app:layout_constraintTop_toTopOf="parent" 20 app:layout_constraintVertical_bias="0.5" /> 21 22 <TextView 23 android:id="@+id/SetTime" 24 android:layout_width="wrap_content" 25 android:layout_height="wrap_content" 26 android:layout_marginBottom="96dp" 27 android:text="ここに時刻がはいります" 28 app:layout_constraintBottom_toTopOf="@+id/timechangebtn" 29 app:layout_constraintEnd_toEndOf="parent" 30 app:layout_constraintStart_toStartOf="parent" /> 31 32 <Button 33 android:id="@+id/timechangebtn" 34 android:layout_width="220dp" 35 android:layout_height="62dp" 36 android:layout_marginBottom="24dp" 37 android:onClick="showTimePickerDialog" 38 android:text="@string/pick_time" 39 app:layout_constraintBottom_toTopOf="@+id/timersetbtn" 40 tools:ignore="OnClick" 41 tools:layout_editor_absoluteX="50dp" 42 tools:layout_editor_absoluteY="118dp" /> 43 44 <Button 45 android:id="@+id/timersetbtn" 46 android:layout_width="wrap_content" 47 android:layout_height="wrap_content" 48 android:onClick="showTimePickerDialog" 49 android:text="@string/timer_start" 50 app:layout_constraintEnd_toEndOf="parent" 51 app:layout_constraintStart_toStartOf="parent" 52 tools:ignore="OnClick" 53 tools:layout_editor_absoluteY="560dp" /> 54 55</FrameLayout>
](273d337c547ae27dfdde9dfec3d15a65.png)
試したみたこと
レイアウトをドラッグで動かそうとしたり、
tools:layout_editor_absoluteX="50dp"
tools:layout_editor_absoluteY="118dp"
の部分を変更するなどしましたが、レイアウトに変化は見られませんでした。
分かりづらい点ございましたら、追加でご質問いただきたいです。
よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/09/17 09:18