My goal is to implement a floating element (maybe I should say 2 elements) at the top of the screen, in a "browse" feature which displays text via a ListView. The elements I wish to float at the top while the user scrolls through various items, are a title and a back button.
As I read through this question and its answer, I found this link which describes a toolbar feature similar to the actionbar in the appCompat library.
As I started implementing the feature, Android Studio displayed an error stating that I was currently using API level 15, and would need to use API level 21 in order to use the toolbar. I intend to target a wide variety of people with this app (farmers, small business owners) so I would not like to implement a feature that excludes those with older Android phones. Does that put this feature out of the question for my business needs?
Then I started studying a solution from this question, but saw that it uses a ViewGroup and thought it looked clunky.
What would be a simple way to solve this problem?
Have I missed the mark on the answers to the S.O questions listed above?
How can I put a title and "back" button that float at the top of the screen?