gpt4 book ai didi

android - 几秒钟后在 Android 上捕获事件

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:37:27 24 4
gpt4 key购买 nike

我想在我的 Android 应用程序中添加一个按钮,并在按下按钮几秒钟后捕获此按钮上的事件 (onclick),因此它不会在第一次触摸时使用react。这有可能在 Android 上实现吗?

现在我有下一个代码可以捕获主页按钮上的 onclick(在 ActionBar 中)。

public boolean onOptionsItemSelected(MenuItem item) {
if (item.getItemId() == android.R.id.home) {
showSendLogAlert();
}

return super.onOptionsItemSelected(item);
}

当用户单击此按钮时,它会通过电子邮件发送一个小报告,我不想意外启动此事件,这就是为什么我希望用户按下几秒钟以确保他想要做那个操作。

解决方案:

根据下面的评论,我得到了这个可行的解决方案:

@Override
protected void onCreate(final Bundle savedInstanceState) {
// stuff

// Set the home button clickable
getActionBar().setHomeButtonEnabled(true);

// Define a long click listener instead of normal one
View homeButton = findViewById(android.R.id.home);
homeButton.setOnLongClickListener(new View.OnLongClickListener() {

@Override
public boolean onLongClick(View v) {
showSendLogAlert();
return false;
}
});

// more stuff
}

最佳答案

我做了类似的事情,但在我的例子中,如果连续按下按钮 3 秒,我想显示一个新的 Activity 。使用此代码作为引用。

Runnable mRunnable,timeRunnable;
Handler mHandler=new Handler();

btnBackoffice = (Button) findViewById(R.id.btn_backoffice);

btnBackoffice.setOnTouchListener(buttonOnTouchListener);

private OnTouchListener buttonOnTouchListener = new OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
switch ( event.getAction() ) {
case MotionEvent.ACTION_DOWN:
mHandler.postDelayed(timeRunnable, 3000);
break;
case MotionEvent.ACTION_UP:
mHandler.removeCallbacks(timeRunnable);
break;
}
return true;
}
};

timeRunnable=new Runnable(){
@Override
public void run() {
Intent intent = new Intent(MainActivity.this, BackofficeActivity.class);
startActivity(intent);

}
};

希望对您有所帮助。

关于android - 几秒钟后在 Android 上捕获事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21880559/

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