zoukankan      html  css  js  c++  java
  • Android工作学习笔记之图片自适应imageview属性android:scaleType

    安卓的适配一直是一件头疼的事情.
    特别是图片.有的时候总是忽大忽小.
    以前习惯于从服务器下载图片后,再写一个工具类来缩减成指定的大小,然后放进指定控件.

    其实不用那么麻烦,ImageView控件中有一个android:scaleType属性。
    即ImageView.setScaleType(ImageView.ScaleType)
    Sdk中介绍作用为:Options for scaling the bounds of an image to the bounds of this view.
    大体意思为:一些缩放边界来控制图片视图的界限范围的选项

    说白了,就是控制ImageView的边界显示方式.

    CENTER
    Center the image in the view, but perform no scaling.
    按图片的原来size居中显示,当图片长/宽超过View的长/宽,则截取图片的居中部分显示.
    
    CENTER_CROP
    Scale the image uniformly (maintain the image's aspect ratio) so that both dimensions (width and height) of the image will be equal to or larger than the corresponding dimension of the view (minus padding).
    按比例扩大图片的size居中显示,使得图片长(宽)等于或大于View的长(宽)
    
    CENTER_INSIDE
    Scale the image uniformly (maintain the image's aspect ratio) so that both dimensions (width and height) of the image will be equal to or less than the corresponding dimension of the view (minus padding).
    将图片的内容完整居中显示,通过按比例缩小或原来的size使得图片长/宽等于或小于View的长/宽
    
    FIT_CENTER
    Scale the image using CENTER.
    把图片按比例扩大/缩小到View的宽度,居中显示
    
    FIT_END
    Scale the image using END.
    把图片按比例扩大/缩小到View的宽度,显示在View的下部分位置
    
    FIT_START
    Scale the image using START.
    把图片按比例扩大/缩小到View的宽度,显示在View的上部分位置
    
    FIT_XY
    Scale the image using FILL.
    把图片不按比例 扩大/缩小到View的大小显示
    
    MATRIX
    Scale using the image matrix when drawing.
    用矩阵来绘制

    例如:
    如果获取到的图片的长宽比例是固定的,假设1:1.
    设计要去在480*800的分辨率上要显示大小为60*60
    那对于的属性就设置为:

    android:layout_width="40dip"
    android:layout_height="40dip"
    android:scaleType="fitXY"

    这样,只要你获取到的图片的比例是1:1,无论图片多大,他都会按照60*60的大小来显示。
    (60px在480*800下为40dip,(60 -0.5) / 1.5=…)

    这样就不需要单独写一个工具来缩放图片了,而且在多分辨率适配的时候,适应能力也大大加强了。

    原文地址:http://www.cnblogs.com/chorrysky/archive/2012/05/11/2496107.html

  • 相关阅读:
    Centos开启FTP及用户配置
    mysql update from 子查询
    sql server 查询表某个字段不重复数据
    ASP.NET 获取来源网站的网址,获取上一网页的网址,获取来源网页的URL,获取上一网页的URL
    Warning: Invalid argument supplied for foreach()
    不支持关键字: “userid”。
    apache301重定向设置
    service httpd restart失败解决方法(小记)
    JavaWeb(一)
    jquery中filter的用法
  • 原文地址:https://www.cnblogs.com/suizhikuo/p/3113917.html
Copyright © 2011-2022 走看看