1. 程式人生 > >Xfermode改變按鈕背景或者drawable的狀態顏色

Xfermode改變按鈕背景或者drawable的狀態顏色

按鈕圖示顏色隨著點選改變顏色,如果用selector就會增大記憶體,特別是按鈕背景顏色不是春色的時候,就要用到兩張drawable資源。

1.如果用view的api設定forceground呢?,先見這個api的前後效果
這裡寫圖片描述

 int color=ContextCompat.getColor(MainActivity.this,R.color.translunent);
                ColorDrawable colorDrawable=new ColorDrawable(color);
                if (Build.VERSION
.SDK_INT >= Build.VERSION_CODES.M) { imageView.setForeground(colorDrawable); }

缺陷 一目瞭然,而且不能向下相容

下面是xfermode的效果:
這裡寫圖片描述


        imageView.setOnClickListener(new View.OnClickListener() {
            boolean flag = false;
            @Override
            public void onClick(View view) {

                Drawable drawable = imageView.getDrawable
(); if (flag) { int color = ContextCompat.getColor(MainActivity.this, android.R.color.transparent); drawable.setColorFilter(color, PorterDuff.Mode.SRC_ATOP); imageView.setImageDrawable(drawable); } else { if (drawable != null) { int color = ContextCompat.getColor
(MainActivity.this, R.color.translunent); drawable.setColorFilter(color, PorterDuff.Mode.SRC_ATOP); imageView.setImageDrawable(drawable); } } flag = !flag; } });

至於xfermode的其他15種效果見官網