从 xml 填充 gridview
我有 GridView
mGridView
,有 3 列 - Process
、Description
和 Type
。 我的 xml
内容如下:
<root>
<Rows>
<Row Name="fdf" Description="dfaf" Type="A" >
</Row>
<Row Name="Sff" />
<Row Name="XYZ" Type="PH">
</Row>
</Rows>
</root>
其中有 3 个属性(名称、描述和类型),并且它们不是必需的。如何使mGridView
的DataSource
成为这个xml并且每个mGridViev
Row
填充3个值xml 中的行属性是树的属性吗?
I have GridView
mGridView
with 3 columns - Process
, Description
and Type
.
I have xml
with the content like this:
<root>
<Rows>
<Row Name="fdf" Description="dfaf" Type="A" >
</Row>
<Row Name="Sff" />
<Row Name="XYZ" Type="PH">
</Row>
</Rows>
</root>
where there are 3 Attributes (Name, Description and Type) and they are not obligatory. How to make the DataSource
of mGridView
to be this xml and every mGridViev
Row
to be filled with the 3 values of the tree atributes in the Row from the xml?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我正确理解您的任务,则以下代码与您的 xml 文件工作正常:
另请尝试调用 gridView 的 PopulateColumns 方法。这有帮助吗?
If I understand your task properly, the following code with your xml file works fine:
Please also try to call the gridView's PopulateColumns method. Does this help?