我坚持填充 Array 动态。
我找不到解决方案。正常我会通过任何循环填充数组。
在这种情况下它不起作用我真的花了几个小时来寻找解决方案。
我找到了一个在 android 中使用自定义列表的示例。工作正常。
我创建了一个对象测试。
public class Test {
public int icon;
public int PB;
public String title;
public Test(){
super();
}
public Test(int icon, String title, int PB) {
super();
this.icon = icon;
this.title = title;
this.PB = PB;
}
}
并在这里填充静态工作正常。但我不知道如何动态填充它。
Test test_data[] = new Test[]
{
new Test(R.drawable.ic_launcher, "Test 1", 10),
new Test(R.drawable.ic_launcher, "Test 2", 100)
};