我有一个userAccounts类,该类声明我的用户帐户的所有变量。但是当试图增加按钮上的userAccounts类型的arrayList的大小时,我得到了错误。

The method userAccounts() is undefined for the type new View.OnClickListener(){}


代码是:

public class CreateAccount extends Activity {
ArrayList<userAccounts> accountArray = new ArrayList<userAccounts>();
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_create_account);



    final Button buttonCreate = (Button) findViewById(R.id.btnCreate);
    buttonCreate.setOnClickListener(new View.OnClickListener() {
        public void onClick(View v) {

            accountArray.add(userAccounts());

最佳答案

如果您想将新项目添加到列表中,则应将accountArray.add(userAccounts())更改为accountArray.add(new userAccounts())
您的变体假设您调用了专门用于侦听器类的某些方法userAccounts()

10-05 23:34