Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何通过 Android 中的代码触发按钮单击事件?基本上,我想在发生其他一些事件时以编程方式触发按钮单击。谢谢你
我们需要做更多的事情,当事件被触发时,哪个按钮想要模拟被按下?
例如,如果您想按下后退按钮,您可以调用
onBackPressed();
在您的活动中,其他按钮操作可能需要更复杂的调用。
或者,如果您想按下您在布局中创建的按钮之一,您可以调用
button.performClick();