Ashish Patil
Ashish Patil

Reputation: 374

How to show SnackBar In android for Pre-Lollipop Device?

I am in trouble i cant show Snackbar in android How to show SnackBar In android for Pre-Lollipop Device?

Upvotes: 0

Views: 1253

Answers (1)

droidpl
droidpl

Reputation: 5892

Have a look at the new Material Design compatibility library. It has the SnackBar for pre-lollipop devices.

Your gradle dependency is: compile 'com.android.support:design:22.2.0'

EDIT

If you are using eclipse, follow the instructions from the official page:

After you download the Android Support Libraries, this library is located in the << sdk >>/extras/android/support/design directory. For more information on how to set up your project, follow the instructions in Adding libraries with resources.

Upvotes: 1

Related Questions