3

下面是我的xml代码:

<RelativeLayout
    android:id="@+id/ib"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentRight="true"
    android:layout_alignParentTop="true"
    android:gravity="center" >

    <ImageButton
        android:id="@+id/button_icon"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
    <TextView
        android:id="@+id/tv"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_toLeftOf="@+id/ib"
        android:gravity="center"
        android:text="Large Text"
        android:textAppearance="?android:attr/textAppearanceLarge" />
</RelativeLayout>

ImageButton ib 和 TextView tw 具有不同的高度。
我希望 ib 和 tv 具有相同的高度。
即如果ib的高度> tv,则将tv的高度设置为与ib相同。
如果不是,则将 ib 的高度设置为与 tv 相同。
我该怎么做?

4

4 回答 4

17

android:layout_alignBottom="@+id/button_icon"属性添加到 textview

于 2012-09-18T08:44:48.690 回答
3

使用 LinearLayout 并将ImageButton高度设置"wrap_content"TextView并将高度设置为"fill_parent"

于 2012-09-18T08:43:03.317 回答
1

您将需要制作is的高度并拥有just 。您需要将它们都包装在布局父级中。这样它们就与同一个布局父级相关联。ImageButton"wrap_content"TextView"fill_parent"

于 2012-09-18T08:33:07.540 回答
0

将元素放入 LinearLayout,设置 layout_width="match_parent" 并添加属性 "layout_weight"="1"

<LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="sample text"/>

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="sample text"/>

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="sample text"/>
    </LinearLayout>
于 2017-03-24T14:48:51.073 回答