我有一个带有一些元素的 ScrollView。我的问题是我不能在 ImageView 之上设置 textview 的动态高度。
我有 3 个不同高度的 ImageView,它们可以可见或消失。在它们上方我需要放置带有背景颜色的文本,此文本需要位于 ImageView 的底部
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/pic"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</ImageView>
<TextView
android:id="@+id/third_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="16dp"
android:padding="8dp"
android:layout_alignParentBottom="true"
android:layout_above="@id/third_picture"
android:gravity="center_horizontal"
android:background="@android:color/white"
android:text="example text">
</TextView>
我尝试了很多,但我的观点总是被打破。请帮忙,我需要一些专业的建议。