I have a listview that will be filled with AsyncTask
and at the bottom edge of the app I need to show a fixed overlay layout like this:
Change the parent layout to RelativeLayout
or FrameLayout
and position the fixed view at the same level of the ListView
(but after the ListView
)
Something like:
---> RelativeLayout
--> ListView
--> Any view as the fixed view
You can then align the fixed view to the bottom of the wrapping RelativeLayout