0

我在一个里面有这个布局RelativeLayout

<LinearLayout
    android:id="@+id/llWatchItemCommentButton"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal" >

    <TextView
        android:id="@+id/myMasterCat_Item"
        style="@style/DropShadowEffect"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:layout_weight="99"
        android:shadowColor="#ffffff"
        android:text="Item"
        android:textColor="#515b61"
        android:textSize="22sp" />

    <ImageView
        android:id="@+id/bFollowComment"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/featured_button_selector"
        android:padding="5dp"
        android:src="@drawable/comment" />
</LinearLayout>

  <TextView
    android:id="@+id/myMastCat_Cat"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignBottom="@+id/llWatchItemCommentButton"
    android:layout_alignLeft="@+id/llWatchItemCommentButton"
    android:layout_marginLeft="10dp"
    android:text="MasterCat"
    android:textColor="#666"
    android:textSize="16sp" />

本质上,如果TextViewLayout 中的那个变成两行,它将与TextView positioned below theLinearLayout 重叠。

是否有一个属性可以纠正这个问题?例如,我希望底部TextView始终低于整体LinearLayout,即使它开始增长。现在,这个位置似乎是固定的。

4

1 回答 1

1

您是否尝试过以下方法:

<TextView
android:id="@+id/myMastCat_Cat"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/llWatchItemCommentButton"    //add this line in
android:layout_alignBottom="@+id/llWatchItemCommentButton"
android:layout_alignLeft="@+id/llWatchItemCommentButton"
android:layout_marginLeft="10dp"
android:text="MasterCat"
android:textColor="#666"
android:textSize="16sp" />
于 2013-05-01T15:21:26.767 回答