我正在尝试制作一个只能在两次调用之间存在一定时间延迟(比如 5 秒)后才能再次调用的函数。
我正在创建的 android 应用程序需要此功能。由于用户可能会在几秒钟内过于频繁地调用该函数,这会破坏他的体验。因此,我正在拼命寻找这个问题的答案。
public void doSomethin(){
//code here which makes sure that this function has not been called twice within the specified delay of 5 seconds
//Some code here
}
任何帮助都是极好的!阿迪特