Skip to content

Instantly share code, notes, and snippets.

@sreelallalu
Created March 8, 2017 04:35
Show Gist options
  • Select an option

  • Save sreelallalu/feb90bff2837ba8ce496834dbb85cb73 to your computer and use it in GitHub Desktop.

Select an option

Save sreelallalu/feb90bff2837ba8ce496834dbb85cb73 to your computer and use it in GitHub Desktop.
public void showsnackbar(String message){
Snackbar snackbar = Snackbar
.make(findViewById(R.id.update_relative(parentlayout id)), message, Snackbar.LENGTH_SHORT);
View sbView = snackbar.getView();
sbView.setBackgroundColor(Color.parseColor("#A981CA"));
TextView textView = (TextView) sbView.findViewById(android.support.design.R.id.snackbar_text);
textView.setTextColor(Color.BLACK);
snackbar.show();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment