android ImageView缩放以适应另一个视图

时间:2012-09-11 15:37:09

标签: android-layout scaling android-imageview

我有一个包含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>

看起来如下:

enter image description here

我想要实现的目标是:

enter image description here

这意味着我希望我的ImageView可以按比例缩放以适合TextView。它可以在xml中完成,没有java编码吗? 如果我能写出类似

的东西
android:layout_height="match_that_TextView"

它可以解决这个问题,但我猜是不可能的。

1 个答案:

答案 0 :(得分:1)

在RelativeLayout中设置修复高度