- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我刚刚开始使用 Android Studio 学习 Android 编程,不幸的是,但我有一个大问题,可能是一个非常简单的事情,即在主 Activity 的布局文件中,我将 startActivity() 方法分配给两个按钮的 android:onClick
属性 (android:onClick="startActivity()")。
现在我应该在 MainActivity 类中实现 startActivity() 方法,但是......我不知道该怎么做。
我看到我应该在 MainActivity 中:public void startActivity(View v)
。我尝试过,花了几个小时寻找解决方案,但我已经失去了希望。
特别是我可以实现例如View.OnClickListener 但方法 startActivity() 不能再做。我该如何实现这个方法?
我将 startActivity() 方法分配给 Activity_main.xml 中两个按钮的 android:onClick 属性:
<Button
android:id="@+id/button"
android:onClick="startActivity()"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="32dp"
android:layout_marginTop="24dp"
android:text="@string/button"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:ignore="OnClick" />
<Button
android:id="@+id/button2"
android:onClick="startActivity()"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="32dp"
android:layout_marginTop="16dp"
android:text="@string/button2"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/button"
tools:ignore="OnClick" />
接下来我应该在 MainActivity 类中实现 startActivity() 方法,但是......我不知道该怎么做:
public class MainActivity extends AppCompatActivity implements startActivity() {
Button b1, b2;
EditText et1, et2;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
b1 = findViewById(R.id.button);
b2 = findViewById(R.id.button2);
et1 = findViewById(R.id.editText);
et2 = findViewById(R.id.editText2);
public void startActivity(View v) {
if (v.getId() == R.id.button) {
String name = et1.getText().toString();
int age = Integer.parseInt(et2.getText().toString());
Intent i = new Intent(this, ResultActivity.class);
i.putExtra("name", name);
i.putExtra("age", age);
startActivity(i);
} else {
Intent i = new Intent(Intent.ACTION_VIEW,
Uri.parse("http://www.google.pl/"));
startActivity(i); }
}
}
最佳答案
您错误地使用了 onClick
属性。这是错误的:
android:onClick="startActivity()"
应该是:
android:onClick="startActivity"
了解更多信息 https://developer.android.com/guide/topics/ui/controls/button#HandlingEvents
<小时/>建议
您应该避免在 xml 中使用 android:onClick
。请改用 onClickListener
。将逻辑和 UI 布局分开非常重要,这样每当 xml 布局更改时您就不需要考虑太多。使用这样的东西:
Button button = (Button) findViewById(R.id.your_button);
button.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
// Do something here when button is clicked.
}
});
关于java - 如何在 Activity 类中实现方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55114308/
我是一名优秀的程序员,十分优秀!