我正在尝试通过 imageView 添加图片。但是我想用图像完全填充我的视图,并且 imageView 应该填充屏幕的宽度。图像应该在屏幕边缘开始和结束。
我使用了每个 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"
android:background="@drawable/bck3"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<Button
android:id="@+id/buttonStore"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_alignBottom="@+id/imageView1"
android:layout_alignParentRight="true"
android:layout_marginRight="10dp"
android:background="@drawable/store" />
<ImageView
android:id="@+id/imageView1"
android:layout_width="100dp"
android:layout_height="40dp"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:src="@drawable/logo" />
<ImageView
android:id="@+id/imageView2"
android:layout_width="fill_parent"
android:layout_height="125dp"
android:layout_marginTop="57dp"
android:adjustViewBounds="true"
android:scaleType="centerCrop"
android:src="@drawable/ronaldo" />
应该是这个