如何为按钮制作不同的触摸和单击行为?

发布于 2024-11-18 11:41:16 字数 226 浏览 2 评论 0原文

我和朋友一起开发一个应用程序,我希望按钮通过改变背景和振动来视觉上按下,然后当释放时它会执行该按钮应该执行的任何操作。

我现在拥有的按钮只有一个 onclick 方法,但我希望它在触摸时振动并在单击时执行其功能

我知道 ontouch 和 onclick 方法,但我似乎无法一起使用它们并且已经实现了 onclicklistener 和 ontouchlistener

我怎么可能管理这个。

Im working on an app with a friend and i want the button to visually press by changing the background and vibrating and then when released it does whatever that button is supposed to do.

the buttons i have right now only have an onclick method but i want it vibrate when touched and execute their function when clicked

i know of the ontouch and onclick methods but i cant seem to use them togetherand have already implemented both onclicklistener and ontouchlistener

how might i manage this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蓝眼泪 2024-11-25 11:41:16

您可以仅使用 OnTouchListener 来完成此操作:

@Override
public boolean onTouch(View v, MotionEvent event) {

    if (event.getAction() == MotionEvent.ACTION_DOWN) {
        /* Change your button background and vibrate */
    }
    else if (event.getAction() == MotionEvent.ACTION_UP) {
        /* Button's functionality */
    }

    return true;
}  

希望它有帮助。

You could do this by only using the OnTouchListener:

@Override
public boolean onTouch(View v, MotionEvent event) {

    if (event.getAction() == MotionEvent.ACTION_DOWN) {
        /* Change your button background and vibrate */
    }
    else if (event.getAction() == MotionEvent.ACTION_UP) {
        /* Button's functionality */
    }

    return true;
}  

Hope it helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文