工具类之SnackbarUtils

Snackbar作为Android design support library下的一个控件,可以方便地在屏幕下方弹出消息,和Toast很相似,但更为灵活,这两天也一直在为它的封装搞事,因为一开始snackbar持有静态变量导致内存泄漏,现在已将其改为弱引用,完美解决其自动回收,真是被自己鸡汁到了;为了我的AndroidUtilCode库中不compile其他库,我不得不用provided com.android.support:design:xxx,但带来的后果就是我需要把如下这三个东西抽出来,真是煞费苦心了我,但是如果只是用我这单个工具类的话那就直接Ctrl + C带走即可,无需像我那般折腾,老司机们只需直接compile com.android.support:design:xxx即可。

工具类之SnackbarUtils_第1张图片
SnackbarXml

可自定义背景色和文字颜色及action按钮的背景色和文字颜色,并可新增自定义view,是不是很爽,下面来展示下效果:

工具类之SnackbarUtils_第2张图片
SnackbarDemo

下方展示其工具类目录及Demo地址和源码:

  • Snackbar相关→SnackbarUtils.java→Demo
showShortSnackbar      : 显示短时snackbar
showLongSnackbar       : 显示长时snackbar
showIndefiniteSnackbar : 显示自定义时长snackbar
addView                : 为SnackBar添加布局
dismissSnackbar        : 取消snackbar显示

import android.support.design.widget.Snackbar;
import android.view.Gravity;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.LinearLayout;
import android.widget.TextView;

import com.blankj.utilcode.R;

import java.lang.ref.ReferenceQueue;
import java.lang.ref.WeakReference;

/**
 * 
 *     author: Blankj
 *     blog  : http://blankj.com
 *     time  : 2016/10/16
 *     desc  : Snackbar相关工具类
 * 
*/ public class SnackbarUtils { private SnackbarUtils() { throw new UnsupportedOperationException("u can't instantiate me..."); } private static WeakReference snackbarWeakReference; /** * 显示短时snackbar * * @param parent 父视图(CoordinatorLayout或者DecorView) * @param text 文本 * @param textColor 文本颜色 * @param bgColor 背景色 */ public static void showShortSnackbar(View parent, CharSequence text, int textColor, int bgColor) { showSnackbar(parent, text, Snackbar.LENGTH_SHORT, textColor, bgColor, null, -1, null); } /** * 显示短时snackbar * * @param parent 父视图(CoordinatorLayout或者DecorView) * @param text 文本 * @param textColor 文本颜色 * @param bgColor 背景色 * @param actionText 事件文本 * @param actionTextColor 事件文本颜色 * @param listener 监听器 */ public static void showShortSnackbar(View parent, CharSequence text, int textColor, int bgColor, CharSequence actionText, int actionTextColor, View.OnClickListener listener) { showSnackbar(parent, text, Snackbar.LENGTH_SHORT, textColor, bgColor, actionText, actionTextColor, listener); } /** * 显示长时snackbar * * @param parent 视图(CoordinatorLayout或者DecorView) * @param text 文本 * @param textColor 文本颜色 * @param bgColor 背景色 */ public static void showLongSnackbar(View parent, CharSequence text, int textColor, int bgColor) { showSnackbar(parent, text, Snackbar.LENGTH_LONG, textColor, bgColor, null, -1, null); } /** * 显示长时snackbar * * @param parent 视图(CoordinatorLayout或者DecorView) * @param text 文本 * @param textColor 文本颜色 * @param bgColor 背景色 * @param actionText 事件文本 * @param actionTextColor 事件文本颜色 * @param listener 监听器 */ public static void showLongSnackbar(View parent, CharSequence text, int textColor, int bgColor, CharSequence actionText, int actionTextColor, View.OnClickListener listener) { showSnackbar(parent, text, Snackbar.LENGTH_LONG, textColor, bgColor, actionText, actionTextColor, listener); } /** * 显示自定义时长snackbar * * @param parent 父视图(CoordinatorLayout或者DecorView) * @param text 文本 * @param duration 自定义时长 * @param textColor 文本颜色 * @param bgColor 背景色 */ public static void showIndefiniteSnackbar(View parent, CharSequence text, int duration, int textColor, int bgColor) { showSnackbar(parent, text, duration, textColor, bgColor, null, -1, null); } /** * 显示自定义时长snackbar * * @param parent 父视图(CoordinatorLayout或者DecorView) * @param text 文本 * @param duration 自定义时长 * @param textColor 文本颜色 * @param bgColor 背景色 * @param actionText 事件文本 * @param actionTextColor 事件文本颜色 * @param listener 监听器 */ public static void showIndefiniteSnackbar(View parent, CharSequence text, int duration, int textColor, int bgColor, CharSequence actionText, int actionTextColor, View.OnClickListener listener) { showSnackbar(parent, text, duration, textColor, bgColor, actionText, actionTextColor, listener); } /** * 设置snackbar文字和背景颜色 * * @param parent 父视图(CoordinatorLayout或者DecorView) * @param text 文本 * @param duration 显示时长 * @param textColor 文本颜色 * @param bgColor 背景色 * @param actionText 事件文本 * @param actionTextColor 事件文本颜色 * @param listener 监听器 */ private static void showSnackbar(View parent, CharSequence text, int duration, int textColor, int bgColor, CharSequence actionText, int actionTextColor, View.OnClickListener listener) { switch (duration) { default: case Snackbar.LENGTH_SHORT: case Snackbar.LENGTH_LONG: snackbarWeakReference = new WeakReference<>(Snackbar.make(parent, text, duration)); break; case Snackbar.LENGTH_INDEFINITE: snackbarWeakReference = new WeakReference<>(Snackbar.make(parent, text, Snackbar.LENGTH_INDEFINITE).setDuration(duration)); } View view = snackbarWeakReference.get().getView(); ((TextView) view.findViewById(R.id.snackbar_text)).setTextColor(textColor); view.setBackgroundColor(bgColor); if (actionText != null && actionText.length() > 0 && listener != null) { snackbarWeakReference.get().setActionTextColor(actionTextColor); snackbarWeakReference.get().setAction(actionText, listener); } snackbarWeakReference.get().show(); } /** * 为snackbar添加布局 *

在show...Snackbar之后调用

* * @param layoutId 布局文件 * @param index 位置(the position at which to add the child or -1 to add last) */ public static void addView(int layoutId, int index) { Snackbar snackbar = snackbarWeakReference.get(); if (snackbar != null) { View view = snackbar.getView(); Snackbar.SnackbarLayout layout = (Snackbar.SnackbarLayout) view; View child = LayoutInflater.from(view.getContext()).inflate(layoutId, null); LinearLayout.LayoutParams params = new LinearLayout.LayoutParams( LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT); params.gravity = Gravity.CENTER_VERTICAL; layout.addView(child, index, params); } } /** * 取消snackbar显示 */ public static void dismissSnackbar() { if (snackbarWeakReference != null && snackbarWeakReference.get() != null) { snackbarWeakReference.get().dismiss(); snackbarWeakReference = null; } } }

如果该工具类依赖其他工具类,都可以在我的Android开发人员不得不收集的代码(持续更新中)中找到。

你可能感兴趣的:(工具类之SnackbarUtils)