I am about to develop an Android Application. In my app, I need to put action bar at the bottom of the screen. I have never done it before. I am afraid to start it referencing on links I found because most of the links suggest to use custom layout like RelativeLayout and LinearLayout because an Action bar cannot be placed at the bottom.
But the problem is I will put infinite list using Recycler View. What I am worrying is if I use RelativeLayout or LinearLayout, if the list is too long, action bar may not be fixed at the bottom of the screen. So I tried to use custom snackbar.
But I feel it is not good idea, because snack bar is not to use like this. But most apps nowadays are using action bar at the bottom. What I want to know is what is the best way to use action bar at the bottom in my case. I have never done putting action bar at the bottom. What would you suggest?