I have been trying to use Floating Action Button. I tried to use some of the resources suggested on here and the links were great; however, I couldn\'t use alot of them beca
Just put compile 'com.android.support:design:22.2.1' in your module app dependencies.
compile 'com.android.support:design:22.2.1'
In your xml:
In you java:
FloatingActionButton fab = (FloatingActionButton)findViewById(R.id.fab); fab.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { } });