我有一个包含TextView和ImageView的相对布局:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:adjustViewBounds="true"/>
</RelativeLayout>
看起来如下:
我想要实现的目标是:
这意味着我希望我的ImageView可以按比例缩放以适合TextView。它可以在xml中完成,没有java编码吗? 如果我能写出类似
的东西android:layout_height="match_that_TextView"
它可以解决这个问题,但我猜是不可能的。
答案 0 :(得分:1)
在RelativeLayout中设置修复高度