Skip to content

Instantly share code, notes, and snippets.

@douglasrafael
Created April 15, 2018 20:34
Show Gist options
  • Select an option

  • Save douglasrafael/aa5f37b84464730f64c6734c95624e9d to your computer and use it in GitHub Desktop.

Select an option

Save douglasrafael/aa5f37b84464730f64c6734c95624e9d to your computer and use it in GitHub Desktop.
Android Snackbar
Snackbar snackbar = Snackbar.make(getView(), R.string.elderly_register_success, Snackbar.LENGTH_LONG);
View snackbarView = snackbar.getView();
TextView textView = (TextView) snackbarView.findViewById(android.support.design.R.id.snackbar_text);
textView.setMaxLines(4); // show multiple line
snackbar.setAction(R.string.yes_text, (v) -> {
mListener.onFormAssessment(elderly);
});
snackbar.show();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment