ウェイトを使用して LinearLayout 内の比率に対して画像をスケーリングし、画像の右側にラベルを付ける方法は? 以下の例は、高さが等しい 3 つの行を示しており、それぞれの右側に TextView を配置する必要があります。要するに、左に画像、右にテキストです。
<LinearLayout 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"
android:orientation="vertical"
tools:context=".MainActivity" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" >
<ImageView
android:id="@+id/a1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#33B5E5"
android:contentDescription="@string/app_name"
android:scaleType="fitStart"
android:src="@android:drawable/star_big_on" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/a1"
android:text="@string/app_name" />
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" >
<ImageView
android:id="@+id/a2"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:background="#AA66CC"
android:contentDescription="@string/app_name"
android:scaleType="fitXY"
android:src="@android:drawable/star_big_on" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/a2"
android:text="@string/app_name" />
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" >
<ImageView
android:id="@+id/a3"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:background="#FF4444"
android:contentDescription="@string/app_name"
android:scaleType="fitStart"
android:src="@android:drawable/star_big_on" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/a3"
android:text="@string/app_name" />
</RelativeLayout>
</LinearLayout>