0
イメージとテキストを1行に表示する必要があります。テキストの高さに基づいてイメージのサイズを変更する必要があります。私はそれがプログラムで可能であることを知っていますが、これはXMLでも可能ですか?テキストの高さに基づいてイメージのサイズを変更する
<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="match_parent">
<ImageView android:id="@+id/Image" ... />
<TextView
android:id="@+id/Text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@id/Image"
tools:layout_editor_absoluteX="47dp"
tools:layout_editor_absoluteY="37dp" />
</RelativeLayout>