I've been searching the web and Stack Overflow and I can't seem to find an answer that explains clearly what I'm trying to do:
I'd like to display a table inside of my widget, I know widgets are limited to only a few layout types, so I thought the easiest way to do this would be to make a vertical linear layout, then add each row as a horizontal linear layout with textviews as cells inside each one. After coding this in a loop, I can't seem to figure out how to put the linearlayout into the widget...
Here's a more visual idea:
<Vertical linear layout>
<text view "title">
<some number of LinearLayouts horizontally - H>
<some number of textviews>
</ll -h>
<text view "footer">
</ll - v>
I'm obviously very new to Android so any help would be great.