1

私は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>

ここに画像の説明を入力してください

小さな画面では、ボタンがテキストの上に表示されます。

ここに画像の説明を入力してください

テキストまたはボタンのサイズを変更して、すべてが正しく表示されるようにします。そして、私はテキストが中央にあったことを望みます。

スタイルとレイアウトツールだけを使用して、どういうわけかそれを行うことはできますか?

または、プログラムでテキストサイズを変更するのが唯一の方法ですか?

4

1 に答える 1

1
 <RelativeLayout
    android:id="@+id/te1"
    android:layout_width="fill_parent"
    android:layout_height="45dp" >

 <TextView
    android:id="@+id/TextViewCount"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignBottom="@+id/ButtonCount"
    android:layout_alignParentLeft="true"
    android:layout_toLeftOf="@+id/ButtonCount"
    android:text="Countfdddgd "
    android:textSize="40dip" />

    <Button
        android:id="@+id/button1"
        style="@style/ButtonText"
        android:layout_alignParentRight="true"
        android:layout_marginTop="2dp"
        android:background="@drawable/greenbutton"   
        android:height="45dp"
        android:text="Accounts"
        android:width="100dp" />

</RelativeLayout>
于 2012-08-24T10:45:00.703 に答える