Skip to content

Instantly share code, notes, and snippets.

@shelajev
Created January 15, 2016 16:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shelajev/20e2a5f199c17b80de23 to your computer and use it in GitHub Desktop.
Save shelajev/20e2a5f199c17b80de23 to your computer and use it in GitHub Desktop.
retrofit2-snackbar-example.java
FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
fab.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Snackbar.make(view, “Super fast hello world”, Snackbar.LENGTH_LONG)
.setAction(“Action”, null).show();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment