Android findViewbyId带有变体字符串

时间:2011-07-13 13:11:01

标签: android

TextView textView1= (TextView) dialog.findViewById(R.id.textView1);

我想创建这样的东西:

for (int i=0; i<100; i++) {
   TextView textView= (TextView) dialog.findViewById(R.id.textView+i);
}

我该怎么做?

莱斯利

1 个答案:

答案 0 :(得分:25)

getIdentifier。基本上,你想要这样的东西:

for (int i=0; i<100; i++) {
   int resId = getResources().getIdentifier("textView" + i, "id", getPackageName());
   TextView textView = (TextView) dialog.findViewById(resId);
}