<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
th, td {
padding: 15px;
}
</style>
</head>
<body>
<table style="width:100%">
<tr>
<th>S.NO</th>
<th>Description</th>
<th>Observation</th>
</tr>
<tr>
<td>1</td>
<td>Check the U/S Wheel assembly and the accompanying documents are available.</td>
<td>-</td>
</tr>
<tr>
<td>2</td>
<td>Check the tyre pressure as received condition _________________ Psi.</td>
<td>-</td>
</tr>
<tr>
<td>3</td>
<td>Carryout leak test on Over inflation Valve <input type="checkbox"> & Thermal fuse<input type="checkbox"></td>
<td>-</td>
</tr>
</table>
</body>
</html>
How to create this kind of table in android with run-time value?
I want to create listview with mix of checkbox and edittext to fill the survey form.
example shown in snippet, kindly look over it. Kindly help me get out from this.
Thanks in advance.