我的活动部分中有一个RelativeLayout,包括一个按钮和一个ImageView。 RelativeLayout的大小是ListPreferredItemHeight,我想要做的是使ImageView从该布局的顶部到底部跨度并相应缩放。
目前,没有实现任何缩放属性,我有这个图像:
我使用以下xml代码实现此目的:
<RelativeLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1">
<Button
android:id="@+id/newPrescription_Medication"
android:gravity="center"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_toLeftOf="@+id/newPrescription_AddMedication"
android:layout_toStartOf="@id/newPrescription_AddMedication"
android:text="@string/select_medication"/>
<ImageView
android:id="@+id/newPrescription_AddMedication"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true"
android:src="@drawable/add_icon"/>
</RelativeLayout>
现在,为了尝试使用按钮填充空间,我将以下内容添加到ImageView标记:
android:adjustViewBounds="true"
android:scaleType="centerInside"
如何在整个图像显示的同时保持其在布局右侧的位置并使用按钮填充其余图像?
答案 0 :(得分:0)
试试这个布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:orientation="horizontal"
android:layout_height="match_parent">
<Button
android:layout_weight="1"
android:id="@+id/newPrescription_Medication"
android:gravity="center"
android:layout_width="0dp"
android:layout_height="match_parent" />
<ImageView
android:id="@+id/newPrescription_AddMedication"
android:layout_width="wrap_content"
android:scaleType="fitCenter"
android:adjustViewBounds="true"
android:layout_gravity="center_vertical"
android:layout_height="match_parent"
android:src="@drawable/ic_launcher"/>