AndroidStudioでDatePickerを使ってプログラムを作成しています。
XMLファイルで中央に寄せても勝手に元の位置に戻ってしまい思い通りの位置に移動できません。
元の位置というのは左寄りでカレンダーが表示されてしまうことです。
誰か中央に寄せる方法を知っている方いらっしゃいませんか。
よろしくお願いいたします。
activity_main.xml
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=".MainActivity"> 8 9 10 <DatePicker 11 android:id="@+id/datePicker1" 12 android:layout_width="match_parent" 13 android:layout_height="742dp" 14 android:layout_alignParentLeft="true" 15 android:layout_alignParentTop="true" 16 android:layout_alignParentRight="true" /> 17 18 19 <TextView 20 android:id="@+id/sample" 21 android:layout_width="match_parent" 22 android:layout_height="685dp" 23 android:gravity="center|bottom" 24 android:text="00" 25 android:textSize="30sp" /> 26 27 <TextView 28 android:id="@+id/TimeLabel" 29 android:layout_width="match_parent" 30 android:layout_height="632dp" 31 android:gravity="center|bottom" 32 android:text="00:00" 33 android:textSize="30sp" /> 34 35</FrameLayout> 36
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。