trying to display this html table 
in android app .this image is just a scap.it contains lot of data .here is html structure
based on this structure i want to display above table in android app
i tried by placing all dt tags static and displaying dd tags with following code
String[] ddsTexts = new String[dds.size()];
List l = new ArrayList();
for (int i = 0; i < dds.size(); i++) {
ddsTexts[i] = dds.get(i).ownText();
System.out.println(ddsTexts);
l.add(ddsTexts[i]);
}
.but it is not working if table format is changing .irrespective of table content ,i want to display it on android screen based on structure.how can i do it.thanks