Android Design Support Library -- Snackbar, androidsnackbar

Source: Internet
Author: User

Android Design Support Library -- Snackbar, androidsnackbar

Snackbar is a lightweight control that provides message prompts and action feedback conveniently, similar to Toast. The Snackbar includes a text message and an optional operation button, which is automatically hidden upon timeout. You can also move it to delete it. The effect is as follows:

  

The usage of Snackbar is similar to that of Toast created by using the make method. The show method shows that the java code is as follows:

 Snackbar.make(view, "Here's a Snackbar", Snackbar.LENGTH_LONG)                        .setAction("Action", new View.OnClickListener() {                            @Override                            public void onClick(View v) {                                Toast.makeText(MainActivity.this,"action",Toast.LENGTH_SHORT).show();                            }                        }).show();

Several important methods:

(1)make(View view, int resId, int duration)Create an Snackbar.

(2)setAction(int resId, View.OnClickListener listener)Set the click event for Snackbar.

(3)setActionTextColor(ColorStateList colors)Set the color of the event title.

(4)setText(int resId)Update text in Snackbar

(5)show()Show Snackbar.

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.