Android TextView未在ImageView下面对齐

时间:2015-07-05 10:45:03

标签: android xml textview imageview

<TextView android:text="ABC" 
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />

下面的代码应该将文字对齐到图像下方的右下角。但那还没有发生

<TextView
    android:text="XYZ"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@id/pic"
    android:layout_alignParentBottom="true"
    android:layout_alignParentRight="true"/>

<ImageView
    android:src="@drawable/androidparty"
    android:layout_height="wrap_content"
    android:layout_width="wrap_content"
    android:id="@+id/pic"/>

1 个答案:

答案 0 :(得分:1)

  

Android TextView未在ImageView下面对齐

TextView由于ImageView属性设置为alignParentBottom而导致TextView无法在true下方对齐。

从TextView中删除alignParentBottom属性:

<TextView
    ....
    android:layout_below="@id/pic" 
    android:layout_alignParentRight="true"/>