在 GridView 中更新 View

我为自定义的 GridView 实现了一个 ArrayAdapter,在 xml 中定义每一个 item 的 layout,情形是这样的:
CSDN移动问答

在 Activity 中实现下面的代码:

GridView gridview = (GridView) findViewById(R.id.gridview);
        adapter = new myArrayAdapter(this, articlesList);
        gridview.setAdapter(new myArrayAdapter(this, articlesList));     
        gridview.setOnItemClickListener(new OnItemClickListener() {
            public void onItemClick(AdapterView<?> parent, View v, int position, long id) {
                // 这里我想想把右下角按钮的文本TextView更新成CLICKED
            }
        });

正如代码中注释的部分解释的一样,我想把右下角按钮的文本TextView更新成CLICKED。
如何实现呢?

(v.findViewById(R.id.text)).setText("");

试试这样行不行
或者你在你的Adapter里的getItem里设置convertview点击事件,然后改值