我有一个包含 4 个相同行的列表视图。在这些行中,我有一个包含 TextView (id : R.id.notif) 的 RelativeLayout。在我的 Activity 中,我使用自己的 ArrayAdapter。
我希望能够修改第三行的文本。我试过这个,但它不工作。
((TextView)listview.getAdapter().getView(2, null, listview).findViewById(R.id.notif)).setText("50");
谢谢你。