我无法获得列表视图的项目

时间:2014-01-27 04:07:16

标签: android

我的hola.xml文件中有两个textview,我要显示的是第一个(0)。感谢

TextView t = (TextView) findViewById(R.id.textViewNMAT1);
String foo = ((TextView)((ViewGroup) arg1).getChildAt(0)).getText().toString();
t.setText(foo);

1 个答案:

答案 0 :(得分:2)

更改为

    @Override
    public void onItemClick(AdapterView<?> infoM, View arg1, int posicion, long _id)
    {
        TextView t = (TextView) findViewById(R.id.textViewNMAT1);
        String foo = ((TextView)arg1).getText().toString();

        t.setText(foo);
    }

第一个param是包含Adapter信息的对象(SpinnerListView等...),第二个param是点击的View(此处为TextView)。因此,请获取TextView中的文字。

Docs