我们可以用另一个按钮启动一个按钮吗
can we fire up one button from another
有没有一种方法可以让我们从 Android 中的另一个按钮启动一个按钮。假设我点击 button1
调用 button2
?
的 onClick()
函数
<Button
android:id="@+id/button1"
android:layout_width="150dp"
android:layout_height="wrap_content" />
<Button
android:id="@+id/button2"
android:layout_width="140dp"
android:layout_height="50dp"/>
在你的第一个按钮的onClick()
中,你可以做
public void onClick(View v) {
btn2.performClick();
}
performClick()
方法将触发 btn2
的 onClick()
有没有一种方法可以让我们从 Android 中的另一个按钮启动一个按钮。假设我点击 button1
调用 button2
?
onClick()
函数
<Button
android:id="@+id/button1"
android:layout_width="150dp"
android:layout_height="wrap_content" />
<Button
android:id="@+id/button2"
android:layout_width="140dp"
android:layout_height="50dp"/>
在你的第一个按钮的onClick()
中,你可以做
public void onClick(View v) {
btn2.performClick();
}
performClick()
方法将触发 btn2
的 onClick()