我有一个自定义ListView,其中每行有2个按钮和一个textview。
我想更改点击按钮的文字。如何识别单击哪一行按钮,然后如何更改同一按钮的文本。
答案 0 :(得分:1)
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
答案 1 :(得分:0)