我试图在点击按钮后隐藏按钮,但它对我不起作用。
这是我的代码:
final Button button = (Button) v.findViewById(R.id.button);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
ToDoList.list_list.add(names.get(position));
button.setVisibility(View.INVISIBLE);
//names.remove(position);
//refresh the adapter of the listview
notifyDataSetChanged();
}