Android Design Support Library系列之五:Snackbar的使用

一、Snackbar介绍

Snackbar作为Android Design Support Library中的一员,使用时并不需要在布局文件中声明,直接在java代码中使用就可以了。
使用前添加依赖:

compile 'com.android.support:design:25.3.1'

Snackbar效果:
1)和Toast 一样,Snackbar能弹出一条消息
2)一小段时间之后、或者用户与屏幕触发交互,Snackbar 会自动消失
3)一个时刻只能有唯一一个 Snackbar 显示
4)和Toast 不同的是,Snackbar 可以设置一个Action与用户发生交互

二、Snackbar简单使用

惯例,给出官方文档
Toast大家都使用过,像下面这样:

Toast.makeText(mContext, "Toast", Toast.LENGTH_SHORT).show();

Snackbar使用和Toast极其相似:

Snackbar.make(view, "Snackbar", Snackbar.LENGTH_SHORT).show();

ok,来看一下Snackbar的简单使用:
布局文件

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <Button
        android:id="@+id/bt"
        android:text="苦海,泛起爱恨"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
</RelativeLayout>

java代码

public class MainActivity extends AppCompatActivity {

    private Button bt;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        bt = (Button) findViewById(R.id.bt);
        bt.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Snackbar.make(bt,"Snackbar",Snackbar.LENGTH_SHORT).show();
            }
        });
    }
}

效果图



这里我通过点击Button,弹出Snackbar(不要管Button的内容,那只是我正在听的歌词......)

同Toast使用差不多,Snackbar使用时也需要3个参数,第二个参数、第三个参数和Toast一样,分别是:显示的文本、时间,不同的是Toast第一个参数是Context,而Snackbar第一个参数需要的是一个View对象。

三、Snackbar与用户交互

与Toast不同的是,Snackbar可以与用户发生交互,只要给它设置一个Action就可以了。

Snackbar.make(bt,"Snackbar",Snackbar.LENGTH_SHORT).
    setAction("交互", new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            Toast.makeText(MainActivity.this,"白云外",Toast.LENGTH_SHORT).show();
          }
  }).show();

当然,如果你不喜欢链式的写法,可以拆开:

Snackbar mSnackbar = Snackbar.make(bt, "Snackbar", Snackbar.LENGTH_SHORT);
mSnackbar.setAction("交互", new View.OnClickListener() {
         @Override
          public void onClick(View v) {
             Toast.makeText(MainActivity.this,"白云外",Toast.LENGTH_SHORT).show();
          }
});
mSnackbar.show();

效果图:


四、更改Snackbar样式

1、修改Action中字体颜色
Action中字体颜色默认使用theme中的colorAccent颜色:

 <item name="colorAccent">@color/colorAccent</item>

Snackbar提供了下面这个方法来修改Action中字体颜色

setActionTextColor()
    Snackbar mSnackbar = Snackbar.make(bt, "Snackbar", Snackbar.LENGTH_SHORT);
    mSnackbar.setAction("交互", new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            Toast.makeText(MainActivity.this,"白云外",Toast.LENGTH_SHORT).show();
        }
    });
    mSnackbar.setActionTextColor(Color.WHITE);
    mSnackbar.show();

效果图:


2、修改Snackbar背景及提示消息字体颜色
Snackbar并没有直接提供方法来设置背景、消息字体颜色的方法,不过Snackbar提供了一个方法来返回一个View对象:

Snackbar.getView()

那么这个View对象代表着什么呢?观看源码

    public static Snackbar make(@NonNull View view, @NonNull CharSequence text, @Duration int duration) {
        final ViewGroup parent = findSuitableParent(view);
        if (parent == null) {
            throw new IllegalArgumentException("No suitable parent found from the given view. "
                    + "Please provide a valid view.");
        }

        final LayoutInflater inflater = LayoutInflater.from(parent.getContext());
        final SnackbarContentLayout content =
                (SnackbarContentLayout) inflater.inflate( R.layout.design_layout_snackbar_include, parent, false);  //☆   
        final Snackbar snackbar = new Snackbar(parent, content, content);
        snackbar.setText(text);
        snackbar.setDuration(duration);
        return snackbar;
    }

看到源码之后发现:原来Snackbar 显示的内容是一个布局填充而来的,接着我又找到那个布局:

<?xml version="1.0" encoding="utf-8"?>
<!--
  ~ Copyright (C) 2015 The Android Open Source Project
  ~
  ~ Licensed under the Apache License, Version 2.0 (the "License");
  ~ you may not use this file except in compliance with the License.
  ~ You may obtain a copy of the License at
  ~
  ~      http://www.apache.org/licenses/LICENSE-2.0
  ~
  ~ Unless required by applicable law or agreed to in writing, software
  ~ distributed under the License is distributed on an "AS IS" BASIS,
  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  ~ See the License for the specific language governing permissions and
  ~ limitations under the License.
-->

<view
    xmlns:android="http://schemas.android.com/apk/res/android"
    class="android.support.design.internal.SnackbarContentLayout"
    android:theme="@style/ThemeOverlay.AppCompat.Dark"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="bottom">

    <TextView
        android:id="@+id/snackbar_text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:paddingTop="@dimen/design_snackbar_padding_vertical"
        android:paddingBottom="@dimen/design_snackbar_padding_vertical"
        android:paddingLeft="@dimen/design_snackbar_padding_horizontal"
        android:paddingRight="@dimen/design_snackbar_padding_horizontal"
        android:textAppearance="@style/TextAppearance.Design.Snackbar.Message"
        android:maxLines="@integer/design_snackbar_text_max_lines"
        android:layout_gravity="center_vertical|left|start"
        android:ellipsize="end"
        android:textAlignment="viewStart"/>

    <Button
        android:id="@+id/snackbar_action"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="@dimen/design_snackbar_extra_spacing_horizontal"
        android:layout_marginStart="@dimen/design_snackbar_extra_spacing_horizontal"
        android:layout_gravity="center_vertical|right|end"
        android:minWidth="48dp"
        android:visibility="gone"
        android:textColor="?attr/colorAccent"
        style="?attr/borderlessButtonStyle"/>

</view>

一看,原来消息是一个TextView,Action按钮是一个Button,看到这,我顿时知道该怎么做了O(∩_∩)O
这不就是一个布局文件吗,想要设置什么直接findViewById找到那个组件直接设置不就可以了...

Snackbar mSnackbar = Snackbar.make(bt, "Snackbar", Snackbar.LENGTH_SHORT);
mSnackbar.setAction("交互", new View.OnClickListener() {
     @Override
     public void onClick(View v) {
         Toast.makeText(MainActivity.this, "白云外", Toast.LENGTH_SHORT).show();
     }
});
 mSnackbar.setActionTextColor(Color.WHITE);

View view = mSnackbar.getView();
view.setBackgroundColor(Color.parseColor("#ff0099cc"));
TextView tv = (TextView) view.findViewById(R.id.snackbar_text);
tv.setTextColor(Color.GREEN);
mSnackbar.show();

ok,效果很满意!更多的样式可以自己去设置,反正不就是一个TextView和一个Button吗O(∩_∩)O

五、Snackbar设置回调
mSnackbar.setCallback(new Snackbar.Callback(){
       @Override
       public void onShown(Snackbar sb) {
           super.onShown(sb);
           Toast.makeText(MainActivity.this,"onShown",Toast.LENGTH_SHORT).show();
       }
       @Override
       public void onDismissed(Snackbar transientBottomBar, int event) {
          super.onDismissed(transientBottomBar, event);
          Toast.makeText(MainActivity.this,"onDismissed",Toast.LENGTH_SHORT).show();
       }
});

Snackbar可以设置一个回调,里面有两个方法:Snackbar显示的时候调用、Snackbar消失的时候调用。


六、Snackbar在CoordinateorLayout容器中

Snackbar需要一个容器,而这个容器官方推荐的CoordinatorLayout,观看Snackbar的源码,发现:
Snackbar 会遍历视图树找到一个合适的容器作为载体,而这个载体首选的就是CoordinatorLayout。

    public static Snackbar make(@NonNull View view, @NonNull CharSequence text,
            @Duration int duration) {

        final ViewGroup parent = findSuitableParent(view);//☆☆☆☆☆

        if (parent == null) {
            throw new IllegalArgumentException("No suitable parent found from the given view. "
                    + "Please provide a valid view.");
        }

        final LayoutInflater inflater = LayoutInflater.from(parent.getContext());
        final SnackbarContentLayout content =
                (SnackbarContentLayout) inflater.inflate(
                        R.layout.design_layout_snackbar_include, parent, false);
        final Snackbar snackbar = new Snackbar(parent, content, content);
        snackbar.setText(text);
        snackbar.setDuration(duration);
        return snackbar;
    }

    private static ViewGroup findSuitableParent(View view) {
        ViewGroup fallback = null;
        //遍历视图树
        do {
            if (view instanceof CoordinatorLayout) {
                // We've found a CoordinatorLayout, use it      首选是CoordinatorLayout作为载体
                return (ViewGroup) view;
            } else if (view instanceof FrameLayout) {
                if (view.getId() == android.R.id.content) {
                    // If we've hit the decor content view, then we didn't find a CoL in the
                    // hierarchy, so use it.
                    return (ViewGroup) view;
                } else {
                    // It's not the content view but we'll use it as our fallback
                    fallback = (ViewGroup) view;
                }
            }

            if (view != null) {
                // Else, we will loop and crawl up the view hierarchy and try to find a parent
                final ViewParent parent = view.getParent();
                view = parent instanceof View ? (View) parent : null;
            }
        } while (view != null);

        // If we reach here then we didn't find a CoL or a suitable content view so we'll fallback
        return fallback;
    }

那么使用CoordinatorLayout作为载体有什么好处呢?
我在布局文件中又加入了一个FloatingActionButton浮在右下角:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <Button
        android:id="@+id/bt"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="苦海,泛起爱恨" />

    <android.support.design.widget.FloatingActionButton
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_alignParentBottom="true"
        android:src="@mipmap/add" />

</RelativeLayout>

可以看见,Snackbar把FloatingActionButton挡住了,这对用户来说体验很不好.

那么使用CoordinatorLayout试试看,CoordinatorLayout是什么呢?
CoordinatorLayout是Android Design Support Library中另外一个组件,后面会单独写一篇文章来介绍它,其本质是一个超级FrameLayout,主要是作为根标签使用,协调各个子布局。

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <Button
        android:id="@+id/bt"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="苦海,泛起爱恨" />

    <android.support.design.widget.FloatingActionButton
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="right|bottom"
        android:src="@mipmap/add" />

</android.support.design.widget.CoordinatorLayout>

可以看见,使用CoordinatorLayout之后,Snackbar弹出的时候,FloatingActionButton会自动上升,而且Snackbar可以通过向右滑动取消。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,718评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,683评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,207评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,755评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,862评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,050评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,136评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,882评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,330评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,651评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,789评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,477评论 4 333
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,135评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,864评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,099评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,598评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,697评论 2 351

推荐阅读更多精彩内容