gpt4 book ai didi

java - 自动调用按钮

转载 作者:行者123 更新时间:2023-12-01 14:02:30 24 4
gpt4 key购买 nike

我想同时调用 3 个按钮或使用延迟时间。

如何像上面那样在一定时间自动调用按钮?

最佳答案

有这样的事吗?!

public boolean onOptionsItemSelected(MenuItem item) {
Log.i(TAG, "Menu Item selected " + item);
if (item == button1) {
variabel.setViewMode(ClassOne.Object1);
new Thread(new Runnable(){
public void run(){try{Thread.sleep(5000);onOptionsItemSelected(button3);}catch(Exception ex){}}
}).start();
} else if (item == button2) {
variabel.setViewMode(ClassOne.Object2);
} else if (item == button3) {
variabel.setViewMode(ClassOne.Object3);
new Thread(new Runnable(){
public void run(){try{Thread.sleep(5000);onOptionsItemSelected(button2);}catch(Exception ex){}}
}).start();
}

尝试将其全部移至新线程中,以便 ui 线程继续执行。

关于java - 自动调用按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19242143/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com