I have looked around on stack overflow and I have found the following posts:
but I am still a bit confused.
What I have is a html table that contains a few of these inside the <tbody> tag with different dates:
<tr>
<td>
<nobr>Fri</nobr>
</td>
<td>
<nobr>Sep 20</nobr>
</td>
<td>
<nobr>4:00 PM</nobr>
</td>
<td>
Practice </td>
</tr>
The table's id is "gymschedule".
So far I can get the table with JSoup and I can display it in a webview with JSoup.
What I need is to get the text of the second <nobr> in the second <td>, and also do this for every other group of <tr> tags in the table.