码迷,mamicode.com
首页 > 移动开发 > 详细

android linearlayout imageview置顶摆放

时间:2015-06-19 21:36:33      阅读:354      评论:0      收藏:0      [点我收藏+]

标签:

在练习android时,想在Linearlayout内放一图片,使其图片置顶,预期效果是这样的:

技术分享

 

  

但xml代码imageview写成这样后,

            <ImageView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:src="@drawable/moegirl_help"

                />

 

效果却是这样的

技术分享

 

试了谢方法,包括改为RelativeLayout布局,调整layout_grativity等,直到想起来有ScaleType这个方法:

            <ImageView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:src="@drawable/moegirl_help"
                android:scaleType="fitStart"
                />

 scaleType属性值为fitStart,则图片置顶对齐;

 scaleType属性值为fitEnd,则图片置底对齐;

 scaleType属性值为fitXY,则图片拉伸铺满全屏。

android linearlayout imageview置顶摆放

标签:

原文地址:http://www.cnblogs.com/Emerald/p/4589756.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!