Skip to content

Instantly share code, notes, and snippets.

@burhanaras
Created October 5, 2016 07:49
Show Gist options
  • Save burhanaras/4b6dce64623e981656bb715fe7ee902c to your computer and use it in GitHub Desktop.
Save burhanaras/4b6dce64623e981656bb715fe7ee902c to your computer and use it in GitHub Desktop.
FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
fab.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Intent intent = FingerPrintingActivity.newIntent(MainActivity.this);
startActivity(intent);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment