我想使用以下代码添加按钮以链接到 RegisterActivity 上的另一个活动
public void setOnAccountCreationFirstViewListener(OnAccountCreationFirstViewListener listener) {
mListener = listener;
}
/**
* Interface for listeners of {@link AccountCreationFirstView}
* see {@link AccountCreationFirstView#setOnAccountCreationFirstViewListener}
*/
public interface OnAccountCreationFirstViewListener {
/**
* User asked to create the account
*/
/**
* User asked to edit : he has an existing account
*/
void onEditAccountRequested();
}
}
谁能帮我在名为 RegisterActivity 的活动中添加一个按钮,按钮 id 是 button2