在布局中更改文本大小的简单方法

时间:2012-08-24 10:40:54

标签: android android-layout

我有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>

enter image description here

在小屏幕上,按钮位于文本顶部:

enter image description here

我想调整文本大小或按钮以使所有文本都正确可见。 我希望文本是中心。

我可以使用样式和布局工具以某种方式完成吗?

或唯一的方法是以编程方式更改文本大小?

1 个答案:

答案 0 :(得分: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>