TextView textView1= (TextView) dialog.findViewById(R.id.textView1);
我想创建这样的东西:
for (int i=0; i<100; i++) {
TextView textView= (TextView) dialog.findViewById(R.id.textView+i);
}
我该怎么做?
莱斯利
答案 0 :(得分:25)
见getIdentifier
。基本上,你想要这样的东西:
for (int i=0; i<100; i++) {
int resId = getResources().getIdentifier("textView" + i, "id", getPackageName());
TextView textView = (TextView) dialog.findViewById(resId);
}