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

Android开发 ImageView开发记录

时间:2019-09-20 18:56:05      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:method   link   属性   blend   配色   set   并集   tableview   设置   

改变图片的着色

默认是这个方法

/**
     * 为图像设置着色选项. Assumes
     * {@link PorterDuff.Mode#SRC_ATOP} blending mode.
     *
     * @param color Color tint to apply.
     * @attr ref android.R.styleable#ImageView_tint
     */
    @RemotableViewMethod
    public final void setColorFilter(int color) {
        setColorFilter(color, PorterDuff.Mode.SRC_ATOP);
    }

还可以使用输入交集/并集等等属性的方式改变图片配色

/**
     * Sets a tinting option for the image.
     *
     * @param color Color tint to apply.
     * @param mode How to apply the color.  The standard mode is
     * {@link PorterDuff.Mode#SRC_ATOP}
     *
     * @attr ref android.R.styleable#ImageView_tint
     */
    public final void setColorFilter(int color, PorterDuff.Mode mode) {
        setColorFilter(new PorterDuffColorFilter(color, mode));
    }

 

Android开发 ImageView开发记录

标签:method   link   属性   blend   配色   set   并集   tableview   设置   

原文地址:https://www.cnblogs.com/guanxinjing/p/11558671.html

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