-4

我有一个动态生成的文本视图数组

for(int i = 0; i < blog_link_counter; i++) {
textViewArray[i] = new TextView(this);
textViewArray[i].setText(Html.fromHtml(array_blog_text[i]+"<br>"));
textViewArray[i].setId(i);
textViewArray[i].setOnClickListener(this);
((LinearLayout) linearLayout).addView(textViewArray[i]);
}

现在我有一个活动,其中有许多文本视图。我需要将 onclick 侦听器功能添加到所有文本视图。

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:id="@+id/info"
android:layout_height="fill_parent"
android:orientation="vertical"
android:background="#FFFFFF" />

我在java文件中添加了onclicklistner。之后我实现了onclicklistner接口

public void onClick(View v) {
    // TODO Auto-generated method stub


switch(v.getId())
{
case R.id.    <--  ?
}

}}

我如何匹配它所指的 Textview id?我的意思是如果 id 是静态的,我可以像 R.id.idfromxmlfile 那样做,但在这种情况下我应该怎么做?

请帮忙

4

2 回答 2

2

您不必使用R.id.xxx,只需使用您在循环中使用的相同数字即可:

switch(v.getId())
{
case 0:
case 1:
//etc
}
于 2013-03-18T16:07:00.167 回答
0

View.setTag() 函数更适合于此。设置标签而不是设置id

// Use .setTag
textViewArray[i].setTag(new Integer(i));

然后,您可以通过调用 .getTag() 来检索视图

Integer tag = (Integer) v.getTag();
switch(tag)
{
case 0:
case ...:
case blog_link_counter - 1:
}
于 2013-03-18T16:08:34.573 回答