在这里,我被卡住,因为我给的图片没有与顶部对齐 在图片的顶部栏之间有一个空格。 即使我没有给出任何保证金或任何填充值。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@drawable/udacity"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
/>
</RelativeLayout>
答案 0 :(得分:1)
您是否尝试过缩放图像?尝试将此添加到imageView android:scaleType="fitXY"
答案 1 :(得分:0)
您的ImageView已正确对齐,但看到的空间是由imageview内部的图像引起的。所以使用&#34; scaleType&#34;属性。
答案 2 :(得分:0)
我最后使用android:scaleType="fitXY"
n得到了正确的输出。 。
分享代码。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ImageView
android:id="@+id/udacityImg1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@drawable/udacity"
android:scaleType="fitXY"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
/>
</RelativeLayout>