I face issue while I am trying to use Snackbar here is error stack
Java.Lang.ClassCastException: android.support.v7.widget.AppCompatTextView cannot be cast to android.widget.Button
any one can guide me why this issue raised
It would be usefull to see the part of the code where the problem occurs. It looks like you are using FindViewById on a AppCompatTextView while casting it to a Button. Try to replace (Button) with (AppCompatTextView).
FindViewById
AppCompatTextView
Button
I have all details for my question here
http://stackoverflow.com/questions/41672636/snackbarsnackbarlayout-onfinishinflate-issue
please have a look