Starting with development phase

Working on Android Studio again is happiness(moreover it’s IntelliJ 😎 ).

I started my development work with designing the layout for Categories Module.

Here’s how it looks like after feeding the static data. Will work later on server interaction.

                             create_categorieschoose_global_categories

 

For the bottom sheet of Categories, I used Fabulous Filter Github library.

Here’s how I used this library.

<pre>FragmentAddCategory dialogFrag = FragmentAddCategory.newInstance();
dialogFrag.setParentFab(fab);
fab.setOnClickListener(new View.OnClickListener() {
 @Override
 public void onClick(View v) {
 dialogFrag.show(getSupportFragmentManager(), dialogFrag.getTag());
 }
});
public class FragmentAddCategory extends AAH_FabulousFragment {

      //Rest of code

Leave a comment