I have a gridView set up in android that I am using to display Videos along with 2 different lines of text, which is all going smoothly and running fine. However when I went to add the footer such as I had done with ListViews, it doesn't appear to be an option. I have found other results on StackOverflow but they all end in the same result with the footer always being on the screen such as the footer in the Instagram app. I need a solution that will display below all of the rows such as
ListView.addFooter(view_footer)
would offer, in the sense of the location. I already have my footer's XML that I have used in my other activities.
How do I add an XML view below the rows in a gridView?
EDIT 01/05/14 3:28PM
I had an idea that if i set up another custom row, and another custom adapter, that i could add my footer in that type of way, but I don't think there can be 2 adapters.