作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想使用以下代码添加按钮以链接到 RegisterActivity 上的另一个 Activity
<pre><code> 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();
}
}
</code></pre>
谁能帮我向名为 RegisterActivity 的 Activity 添加一个按钮按钮ID是button2
最佳答案
更改按钮的 xml 并添加 android:onClick="openActivity"
例如
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="openActivity"
android:text="@string/button" />
然后将此函数添加到布局包含button1的Activity类中
public void openActivity(View view)
{
Intent intent = new Intent(this, RegisterActivity .class);
startActivity(intent);
}
关于java - 添加链接到另一个 Activity ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18442997/
我正在开发一个 voip 调用应用程序。我需要做的是在接到来电时将 Activity 带到前台。我在应用程序中使用 Twilio,并在收到推送消息时开始调用。 问题是我试图在接到任何电话时显示 Act
我是一名优秀的程序员,十分优秀!