如何在android中创建listview,混合使用checkbox和edittext以及textview?

时间:2017-12-03 13:17:01

标签: android listview dynamic dynamic-list



<!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>
&#13;
&#13;
&#13;

如何在android中创建具有运行时值的这种表?
我想创建listview,混合使用复选框和edittext来填写调查表 在片段中显示的示例,请仔细查看它。请帮我摆脱这个。 提前谢谢。

0 个答案:

没有答案
相关问题