談談 Android Material Design 中的 Tint(著色)
什麼是Tint
當我開始接觸Tint這個詞的時候,其實是蠻不理解它的意思的,以及並不清楚Google發明它的目的,它一般搭配Background配合使用,但是現在已經有了Background,為什麼還需要Tint呢?
Tint 翻譯為著色。
著色,著什麼色呢?和背景有關,當然是著背景的色。當我開發客戶端,使用了appcompat-v7包的時候,為了實現Material Design的效果,我們會去設定主題裡的幾個顏色,重要的比如primaryColor,colorControlNormal,colorControlActived等等,而我們使用的一些元件,比如EditText就會自動變成我們想要的背景顏色,在背景圖只有一張的情況下,這樣的做法極大的減少了我們apk包的大小。
實現的方式就是用一個顏色為我們的背景圖片設定tint(著色)。
例子:
看看即將釋出的SegmentFault for Android 2.7中,釋出問題功能,這個EditText的顏色和我們的主要顏色相同。它利用了TintManager這個類,為自己的背景進行著色(綠色)。
那麼這個原始圖是什麼樣子呢?我們從appcompat-v7包中找到了這個圖,是一個.9圖,樣子如下:
其實它只是一個黑色的條,通過綠色的著色,變成了一個綠色的條。 就是這樣的設計方式,使得我們在Material Design中省了多少資原始檔呀!
好了,既然理解了tint的含義,我們趕緊看下這一切是如何實現的吧。
其實底層特別簡單,瞭解過渲染的同學應該知道PorterDuffColorFilter這個東西,我們使用SRC_IN的方式,對這個Drawable進行顏色方面的渲染,就是在這個Drawable中有畫素點的地方,再用我們的過濾器著色一次。
實際上如果要我們自己實現,只用獲取View的backgroundDrawable之後,設定下colorFilter即可。
看下最核心的程式碼就這麼幾行
javaif (filter == null) { // Cache miss, so create a color filter and add it to the cache filter = new PorterDuffColorFilter(color, mode); } d.setColorFilter(filter);
通常情況下,我們的mode一般都是SRC_IN,如果想了解這個屬性相關的資料,這裡是傳送門: http://blog.csdn.net/t12x3456/article/details/10432935 (中文)
由於API Level 21以前不支援background tint在xml中設定,於是提供了ViewCompat.setBackgroundTintList方法和ViewCompat.setBackgroundTintMode用來手動更改需要著色的顏色,但要求相關的View繼承TintableBackgroundView介面。
原始碼解析
看下原始碼是如何實現的吧,我們以AppCompatEditText為例:
看下建構函式(省略無關程式碼)
javapublic AppCompatEditText(Context context, AttributeSet attrs, int defStyleAttr) { super(TintContextWrapper.wrap(context), attrs, defStyleAttr); ... ColorStateList tint = a.getTintManager().getTintList(a.getResourceId(0, -1)); //根據背景的resource id獲取內建的著色顏色。 if (tint != null) { setInternalBackgroundTint(tint); //設定著色 } ... } private void setInternalBackgroundTint(ColorStateList tint) { if (tint != null) { if (mInternalBackgroundTint == null) { mInternalBackgroundTint = new TintInfo(); } mInternalBackgroundTint.mTintList = tint; mInternalBackgroundTint.mHasTintList = true; } else { mInternalBackgroundTint = null; } //上面的程式碼是記錄tint相關的資訊。 applySupportBackgroundTint(); //對背景應用tint } private void applySupportBackgroundTint() { if (getBackground() != null) { if (mBackgroundTint != null) { TintManager.tintViewBackground(this, mBackgroundTint); } else if (mInternalBackgroundTint != null) { TintManager.tintViewBackground(this, mInternalBackgroundTint); //最重要的,對tint進行應用 } } }
然後我們進入tintViewBackground看下TintManager裡面的原始碼
javapublic static void tintViewBackground(View view, TintInfo tint) { final Drawable background = view.getBackground(); if (tint.mHasTintList) { //如果設定了tint的話,對背景設定PorterDuffColorFilter setPorterDuffColorFilter( background, tint.mTintList.getColorForState(view.getDrawableState(), tint.mTintList.getDefaultColor()), tint.mHasTintMode ? tint.mTintMode : null); } else { background.clearColorFilter(); } if (Build.VERSION.SDK_INT <= 10) { // On Gingerbread, GradientDrawable does not invalidate itself when it's ColorFilter // has changed, so we need to force an invalidation view.invalidate(); } } private static void setPorterDuffColorFilter(Drawable d, int color, PorterDuff.Mode mode) { if (mode == null) { // If we don't have a blending mode specified, use our default mode = DEFAULT_MODE; } // First, lets see if the cache already contains the color filter PorterDuffColorFilter filter = COLOR_FILTER_CACHE.get(color, mode); if (filter == null) { // Cache miss, so create a color filter and add it to the cache filter = new PorterDuffColorFilter(color, mode); COLOR_FILTER_CACHE.put(color, mode, filter); } // 最最重要,原來是對background drawable設定了colorFilter 完成了我們要的功能。 d.setColorFilter(filter); }
以上是對API21以下的相容。
如果我們要實現自己的AppCompat元件實現tint的一些特性的話,我們就可以指定好ColorStateList,利用TintManager對自己的背景進行著色,當然需要對外開放設定的介面的話,我們還要實現TintableBackgroundView介面,然後用ViewCompat.setBackgroundTintList進行設定,這樣能完成對v7以上所有版本的相容。
例項
比如我現在要對一個自定義元件實現對Tint的支援,其實只用繼承下,加一些程式碼就好了,程式碼如下(幾乎通用):
public class AppCompatFlowLayout extends FlowLayout implements TintableBackgroundView { private static final int[] TINT_ATTRS = { android.R.attr.background }; private TintInfo mInternalBackgroundTint; private TintInfo mBackgroundTint; private TintManager mTintManager; public AppCompatFlowLayout(Context context) { this(context, null); } public AppCompatFlowLayout(Context context, AttributeSet attributeSet) { this(context, attributeSet, 0); } public AppCompatFlowLayout(Context context, AttributeSet attributeSet, int defStyle) { super(context, attributeSet, defStyle); if (TintManager.SHOULD_BE_USED) { TintTypedArray a = TintTypedArray.obtainStyledAttributes(getContext(), attributeSet, TINT_ATTRS, defStyle, 0); if (a.hasValue(0)) { ColorStateList tint = a.getTintManager().getTintList(a.getResourceId(0, -1)); if (tint != null) { setInternalBackgroundTint(tint); } } mTintManager = a.getTintManager(); a.recycle(); } } private void applySupportBackgroundTint() { if (getBackground() != null) { if (mBackgroundTint != null) { TintManager.tintViewBackground(this, mBackgroundTint); } else if (mInternalBackgroundTint != null) { TintManager.tintViewBackground(this, mInternalBackgroundTint); } } } @Override protected void drawableStateChanged() { super.drawableStateChanged(); applySupportBackgroundTint(); } private void setInternalBackgroundTint(ColorStateList tint) { if (tint != null) { if (mInternalBackgroundTint == null) { mInternalBackgroundTint = new TintInfo(); } mInternalBackgroundTint.mTintList = tint; mInternalBackgroundTint.mHasTintList = true; } else { mInternalBackgroundTint = null; } applySupportBackgroundTint(); } @Override public void setSupportBackgroundTintList(ColorStateList tint) { if (mBackgroundTint == null) { mBackgroundTint = new TintInfo(); } mBackgroundTint.mTintList = tint; mBackgroundTint.mHasTintList = true; applySupportBackgroundTint(); } @Nullable @Override public ColorStateList getSupportBackgroundTintList() { return mBackgroundTint != null ? mBackgroundTint.mTintList : null; } @Override public void setSupportBackgroundTintMode(PorterDuff.Mode tintMode) { if (mBackgroundTint == null) { mBackgroundTint = new TintInfo(); } mBackgroundTint.mTintMode = tintMode; mBackgroundTint.mHasTintMode = true; applySupportBackgroundTint(); } @Nullable @Override public PorterDuff.Mode getSupportBackgroundTintMode() { return mBackgroundTint != null ? mBackgroundTint.mTintMode : null; } }
趕快去試試吧~
相關文章
- 從使用到原始碼,細說 Android 中的 tint 著色器原始碼Android
- 談談Android中的MVPAndroidMVP
- Android之Material DesignAndroidMaterial Design
- Android 分享會:Material Design 在 Android 中的應用AndroidMaterial Design
- 談談Android中的DividerAndroidIDE
- 探索新的Android Material Design支援庫AndroidMaterial Design
- Material DesignMaterial Design
- Android Material Design 陰影實現AndroidMaterial Design
- 談談位運算和在Android中的運用Android
- Android 5.0——Material Design詳解(動畫篇)AndroidMaterial Design動畫
- Material Design AnimationMaterial Design
- Material Design時代Material Design
- 也談 Android 中的回撥Android
- 談談 react 中的 keyReact
- 在程式碼中實現android:tint效果Android
- Material Design實戰Material Design
- 安卓Material Design(2)安卓Material Design
- 安卓Material Design(3)安卓Material Design
- 安卓Material Design(5)安卓Material Design
- 淺談Android中LifecycleAndroid
- 淺談Android中的mvc,mvp,mvvmAndroidMVCMVPMVVM
- 談談對中斷的理解
- 談談JavaScript中的this機制JavaScript
- Android 探索之旅 | Material Design 學習資源AndroidMaterial Design
- Android UI進階之旅7 Material Design之PaletteAndroidUIMaterial Design
- Android-Material Design風格MVP模式的新聞AppAndroidMaterial DesignMVP模式APP
- Android UI進階之旅2 Material Design之RecyclerView的使用AndroidUIMaterial DesignView
- Angular Material 攻略 03 angular Material Design 安裝AngularMaterial Design
- 談談 23 種設計模式在 Android 專案中的應用設計模式Android
- 談談Android專案框架的前世今生Android框架
- Material Design 之 TabLayout 使用Material DesignTabLayout
- Material Design之AppBarLayoutMaterial DesignAPP
- 談談Spring中的BeanPostProcessor介面SpringBean
- 談談JS中的函式劫持JS函式
- 談談 Java 中的那些“瑣”事Java
- 談談Selenium中的日誌
- Material Design 中的應用欄該怎麼設計?Material Design
- Android UI進階之旅7--Material Design之PaletteAndroidUIMaterial Design