<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"/>
答案 0 :(得分:1)
Android TextView未在ImageView下面对齐
TextView
由于ImageView
属性设置为alignParentBottom
而导致TextView无法在true
下方对齐。
从TextView中删除alignParentBottom
属性:
<TextView
....
android:layout_below="@id/pic"
android:layout_alignParentRight="true"/>