android设置imageView宽度为match_parent,为什么所有会留白
<?xmlversion="1.0"encoding="utf-8"?><LinearLayoutxmlns:android="http://schemas.androi...
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ImageView
android:id="@+id/imgView_shouye_zone_dream"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@drawable/shouye_zone_top" />
</LinearLayout> 展开
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ImageView
android:id="@+id/imgView_shouye_zone_dream"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@drawable/shouye_zone_top" />
</LinearLayout> 展开
3个回答
展开全部
imageView设置了magin或者imageView外层布局设置了padding导致。
通俗的理解:
Padding 为内边框,指该控件内部内容,如文本/图片距离该控件的边距
Margin 为外边框,指该控件距离边父控件的边距
对应的属性为
android:layout_marginBottom="25dip"
android:layout_marginLeft="10dip"
android:layout_marginTop="10dip"
android:layout_marginRight="10dip"
android:paddingLeft="1dip"
android:paddingTop="1dip"
android:paddingRight="1dip"
android:paddingBottom="1dip"
如果左右上下都是相同的设置则可以直接设置
android:layout_margin="10dip"
android:padding="5dip"
通俗的理解:
Padding 为内边框,指该控件内部内容,如文本/图片距离该控件的边距
Margin 为外边框,指该控件距离边父控件的边距
对应的属性为
android:layout_marginBottom="25dip"
android:layout_marginLeft="10dip"
android:layout_marginTop="10dip"
android:layout_marginRight="10dip"
android:paddingLeft="1dip"
android:paddingTop="1dip"
android:paddingRight="1dip"
android:paddingBottom="1dip"
如果左右上下都是相同的设置则可以直接设置
android:layout_margin="10dip"
android:padding="5dip"
展开全部
在xml里的ImageView中设置android:scaleType="fitXY"属性,这个属性是让图片填充满,当然你可以去查一下这个scaleType的其他属性,你要填满就用fitXY就可以了,以后可以根据需要换别的。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<ImageView
android:id="@+id/imgView_shouye_zone_dream"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@drawable/shouye_zone_top"
android:scaleType="fitXY"/>
因为ImageView的scaletype 默认是matrix的
android:id="@+id/imgView_shouye_zone_dream"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@drawable/shouye_zone_top"
android:scaleType="fitXY"/>
因为ImageView的scaletype 默认是matrix的
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询