我的问题是imageview和屏幕之间的空白区域,我希望imageview的宽度与sceen相同,那么有没有办法从xml文件中删除这个边距(空白区域)? 这是截图 http://s15.postimg.org/coxrf6b2z/Capture.png 我没有找到任何解决方案......
和xml文件:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:background="@drawable/layout_back"
android:layout_height="match_parent"
tools:ignore="MergeRootFrame"
>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/fl"
android:adjustViewBounds="true"
tools:ignore="MergeRootFrame" >
<ImageView
android:id="@+id/image_header"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
tools:ignore="MergeRootFrame"
android:scaleType="centerCrop"
android:src="@drawable/wlp" />
<View
android:layout_width="match_parent"
android:layout_height="68dp"
android:background="@drawable/gradient"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="@string/bienvenue"
android:id="@+id/tvBienvenue"
android:layout_alignParentTop="false"
android:layout_centerInParent="true"
android:textColor="#ffffffff" />
<Spinner
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/spinner"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true" />
</RelativeLayout>
<ListView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/listView"
android:layout_below="@+id/fl"
android:layout_above="@+id/l1" />
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentRight="false"
android:layout_alignParentEnd="true"
android:gravity="bottom"
android:layout_gravity="bottom"
android:id="@+id/l1"
android:layout_alignParentBottom="true">
</LinearLayout>
</LinearLayout>
提前感谢!
答案 0 :(得分:0)
我认为这是由android:scaleType="centerCrop
ImageView
尝试将其设置为FIT_XY
并查看会发生什么所致。
答案 1 :(得分:0)
您的布局中没有边距或填充,我复制粘贴您的代码并看不到边距。确保它不是你的照片的一部分。
中心裁剪也将填充图像视图。那不是你的问题。