方形按钮放在RelativeLayout中

时间:2012-02-22 08:38:35

标签: android button relativelayout

我想要一个左对齐的textview,旁边是一个右对齐的按钮。所以我设置了一个像这样的RelativeLayout:

<RelativeLayout 
    android:id="@+id/relativeLayout"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" >

    <TextView
        android:id="@+id/textViewHeader"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:textSize="30dip"
        android:padding="10dip"
        android:text="@string/app_name" />

    <Button
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:layout_alignTop="@id/textViewHeader"
        android:layout_alignBottom="@id/textViewHeader"
        android:layout_alignParentRight="true"
        android:id="@+id/button"
        android:text="?" />

</RelativeLayout>

textview设置为填充宽度,因为它有一个渐变背景,我想在屏幕上显示。

我现在要做的是让按钮成为正方形(宽度和高度相等)。我试图制作自己的SquareButton并覆盖它的onMeasure,但用作输入的大小是整个屏幕的大小。我想当它放在RelativeLayout中时会涉及到其他一些技巧吗?

0 个答案:

没有答案