我正在动态创建按钮,我需要动态设置setOnClickListener()
我目前正在尝试使用下面的代码,但它给了我这个语法错误:
private void AddButton(){
Button btn = new Button(this);
btn.setOnClickListener(OnClick(this));
layout.addView(delBtn);
}
public void OnClick(View v) {
Log.d("Button", "Dynamically created button was clicked");
}
"The method OnClick(View) in the type ActivityExample is not applicable for the arguments ()"
我该如何解决这个问题?
编辑:我需要在方法中使用单击侦听器方法上的AddButton()
按钮