这篇文章主要介绍Android开发如何实现ImageView宽度顶边显示,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!
创新互联专注为客户提供全方位的互联网综合服务,包含不限于做网站、网站制作、龙山网络推广、小程序制作、龙山网络营销、龙山企业策划、龙山品牌公关、搜索引擎seo、人物专访、企业宣传片、企业代运营等,从售前售中售后,我们都将竭诚为您服务,您的肯定,是我们大的嘉奖;创新互联为所有大学生创业者提供龙山建站搭建服务,24小时服务热线:028-86922220,官方网址:www.cdcxhl.com具体如下:
ImageView 图片宽度顶边显示,高度保持比例
1、在布局中设置
<ImageView android:layout_width="match_parent" android:layout_height="wrap_content" android:paddingLeft="5dp" android:paddingRight="2.5dp" android:layout_weight="1" android:scaleType="fitXY" android:adjustViewBounds="true" android:src="@drawable/default_wallpaper_collection_cover"/>
主要是代码:
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宽度顶边显示-创新互联
转载来于:https://www.cdcxhl.com/article24/deihje.html
成都网站建设公司_创新互联,为您提供网站制作、定制网站、用户体验、电子商务、软件开发、ChatGPT
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联