代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
Java
】
Snackbar相关
作者:
博超
/ 发布于
2017/2/21
/
863
package com.blankj.utilcode.utils; import android.support.annotation.ColorInt; import android.support.design.widget.Snackbar; import android.view.Gravity; import android.view.LayoutInflater; import android.view.View; import android.widget.LinearLayout; import java.lang.ref.WeakReference; /** * <pre> * author: Blankj * blog : http://blankj.com * time : 2016/10/16 * desc : Snackbar相关工具类 * </pre> */ public class SnackbarUtils { private SnackbarUtils() { throw new UnsupportedOperationException("u can't instantiate me..."); } private static WeakReference<Snackbar> snackbarWeakReference; /** * 显示短时snackbar * * @param parent 父视图(CoordinatorLayout或者DecorView) * @param text 文本 * @param textColor 文本颜色 * @param bgColor 背景色 */ public static void showShortSnackbar(View parent, CharSequence text, @ColorInt int textColor, @ColorInt 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, @ColorInt int textColor, @ColorInt 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, @ColorInt int textColor, @ColorInt 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, @ColorInt int textColor, @ColorInt 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 textColor 文本颜色 * @param bgColor 背景色 */ public static void showIndefiniteSnackbar(View parent, CharSequence text, @ColorInt int textColor, @ColorInt int bgColor) { showSnackbar(parent, text, Snackbar.LENGTH_INDEFINITE, 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 showIndefiniteSnackbar(View parent, CharSequence text, @ColorInt int textColor, @ColorInt int bgColor, CharSequence actionText, int actionTextColor, View.OnClickListener listener) { showSnackbar(parent, text, Snackbar.LENGTH_INDEFINITE, 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, @ColorInt int textColor, @ColorInt int bgColor, CharSequence actionText, int actionTextColor, View.OnClickListener listener) { snackbarWeakReference = new WeakReference<>(Snackbar.make(parent, text, duration)); Snackbar snackbar = snackbarWeakReference.get(); View view = snackbar.getView(); snackbar.setActionTextColor(textColor); view.setBackgroundColor(bgColor); if (actionText != null && actionText.length() > 0 && listener != null) { snackbar.setActionTextColor(actionTextColor); snackbar.setAction(actionText, listener); } snackbar.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; } } }
试试其它关键字
Snackbar相关
同语言下
.
List 切割成几份 工具类
.
一行一行读取txt的内容
.
Java PDF转换成图片并输出给前台展示
.
java 多线程框架
.
double类型如果小数点后为零则显示整数否则保留两位小
.
将图片转换为Base64字符串公共类抽取
.
sqlParser 处理SQL(增删改查) 替换schema 用于多租户
.
JAVA 月份中的第几周处理 1-7属于第一周 依次类推 29-
.
java计算两个经纬度之间的距离
.
输入时间参数计算年龄
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
博超
贡献的其它代码
(
13
)
.
SQL 如何去除重复的字符串
.
查询域名映射的所有IP地址
.
Snackbar相关
.
压缩相关
.
通过java反射获取任意对象的字段名及字段值
.
Java 单选复选框
.
读取XML文件通用工具类(递归调用)
.
java处理json的工具类(list,map和json的之间的转换)
.
查询今天,昨天,近7天,近30天,本月,上一月数据的方法
.
在一个ASP.Net页中实现上传照片并存入数据库,上传后
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3