I am very new at implementing custom libraries from github.com
Here is the link I tried to follow:
https://github.com/makovkastar/FloatingActionButton
It seems easy to implement this floating action button, but I need someone to teach me how to follow this instruction.
I get stuck here:
3) Attach the FAB to AbsListView, RecyclerView or ScrollView :
ListView listView = (ListView) findViewById(android.R.id.list);
FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
fab.attachToListView(listView);
because I don't have FloatingActionButton.java in my project.
Do I have to download all these files :
and put all of them inside my package?
I just need some beginner-level guidelines..