不幸的是,我刚刚开始使用Android Studio学习Android编程,但是我可能遇到了一个非常简单的问题,即在主活动的布局文件中,我将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); }
}
}
答案 0 :(得分:1)
您错误地使用了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.
}
});
答案 1 :(得分:1)
如ישו אוהב אותך9A所述 https://developer.android.com/guide/topics/ui/controls/button#HandlingEvents
<Button xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/button_send"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button_send"
//onClick function/method name don't use round brackets
android:onClick="sendMessage" />
以及您的活动
//JAVA
/** Called when the user touches the button */
public void sendMessage(View view) {
// Do something in response to button click
}
//Kotlin
/** Called when the user touches the button */
fun sendMessage(view: View) {
// Do something in response to button click
}
并删除tools:ignore="OnClick"
我希望对您有帮助
答案 2 :(得分:0)
首先,更改此
android:onClick="startActivity()"
对此:
android:onClick="startActivity"
然后将startActivity方法移至OnCreate方法下方。当前位于OnCreate中