我有一个自定义 ListView,其中每行有 2 个按钮和一个 textview。
我想更改单击按钮的文本。如何识别单击了哪一行的哪个按钮,然后如何更改同一按钮的文本。
How to identify that which button of which row has been clicked
使用 onClickListener()。单击按钮时,将调用该按钮的 onClickListener。
How to change the text of the same button
在 onClickListener() 你可以做类似的事情
yourTextView.setTextColor(Color.rgb(0,0,0)); //replace 0,0,0 with the rgb value of the color