4

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

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

4

1 回答 1

1

在 RelativeLayout 中固定高度

于 2012-09-11T15:39:53.977 回答