私はRelativeLayoutタイトルバー付きのRelativeLayoutを持っています:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:orientation="vertical" >
<RelativeLayout android:id="@+id/titleBar"
style="@style/TitleBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true">
<TextView
android:id="@+id/caption"
style="@style/WindowCaption"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:text="caption"/>
<Button
android:id="@+id/buttonSave"
style="@style/ButtonBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_marginRight="5dp"
android:onClick="save"
android:text="Save" />
</RelativeLayout>
...
</RelativeLayout>
小さな画面では、ボタンがテキストの上に表示されます。
テキストまたはボタンのサイズを変更して、すべてが正しく表示されるようにします。そして、私はテキストが中央にあったことを望みます。
スタイルとレイアウトツールだけを使用して、どういうわけかそれを行うことはできますか?
または、プログラムでテキストサイズを変更するのが唯一の方法ですか?