如何在linearlayout(Android)中填充相同的布局

时间:2012-04-23 10:54:11

标签: android android-layout

我需要创建一个列表。该列表将包含类似的对象。每个对象都有一些图像,文本和按钮。我可以将这些项目放在表格布局中并安排它们(孩子)。但我需要有一个这些(孩子)项目的清单。我需要动态填充它们。所以我一开始就不能用XML编写代码。

我该怎么办?你能发布一些教程或样本吗?

谢谢

1 个答案:

答案 0 :(得分:0)

这有助于我设计自定义视图作为列表视图的一部分 -

http://saigeethamn.blogspot.in/2010/04/custom-listview-android-developer.html

编辑 -

从未尝试过可能是这个地方 -

new String[] {"pen","price","contactid"},
new int[] {R.id.text1,R.id.text2}

通过xml文件中的imageviews替换文本

然后这是

HashMap<String,String> tempnew = new HashMap<String,String>();
temp.put("pen",cur.getString(1).replace("+", " "));

重新制作它
HashMap<String,Image> tempnew = new HashMap<String,Image>();
temp.put("pen",Image1);

Image1将成为你的形象

这是你的意思吗?