Android开发如何实现ImageView宽度顶边显示-创新互联
这篇文章主要介绍Android开发如何实现ImageView宽度顶边显示,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!
创新互联专注为客户提供全方位的互联网综合服务,包含不限于做网站、网站制作、龙山网络推广、小程序制作、龙山网络营销、龙山企业策划、龙山品牌公关、搜索引擎seo、人物专访、企业宣传片、企业代运营等,从售前售中售后,我们都将竭诚为您服务,您的肯定,是我们大的嘉奖;创新互联为所有大学生创业者提供龙山建站搭建服务,24小时服务热线:028-86922220,官方网址:www.cdcxhl.com具体如下:
ImageView 图片宽度顶边显示,高度保持比例
1、在布局中设置
主要是代码:
android:scaleType="fitXY"
:填充宽度match_parentandroid:adjustViewBounds="true"
:高度保持比例
2、代码实现
public class MImageView extends ImageView { public MImageView(Context context) { super(context); } public MImageView(Context context, AttributeSet attrs) { super(context, attrs); } public MImageView(Context context, AttributeSet attrs, int defStyleAttr) { super(context, attrs, defStyleAttr); } @Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { Drawable drawable = getDrawable(); if (drawable != null) { int width = MeasureSpec.getSize(widthMeasureSpec); int height = (int) Math.ceil((float) width * (float) drawable.getIntrinsicHeight() / (float) drawable.getIntrinsicWidth()); setMeasuredDimension(width, height); } else { super.onMeasure(widthMeasureSpec, heightMeasureSpec); } } }
以上是“Android开发如何实现ImageView宽度顶边显示”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注创新互联行业资讯频道!
本文标题:Android开发如何实现ImageView宽度顶边显示-创新互联
标题路径:http://pwwzsj.com/article/deihje.html