我正在尝试使用自定义视图列表填充线性布局,如图所示:
为此,我将foo.xml填充到新的View对象中,然后使用.setText更改textview,然后将新的View添加到线性布局中。
问题是:即使在模拟器外部,它也非常慢,要花10秒钟以上才能显示在我的S9中。
LinearLayout layout = findViewById(R.id.layout);
while(a<500){
Person person = new Person();
View personData = inflater.inflate(R.layout.person, layout, false);
layout.addView(personData);
((TextView) coinData.findViewById(R.id.textView_text_name)).setText(person.name);
a=a+1
}
编辑:谢谢大家!我现在要尝试RecyclerView