如何为按钮制作不同的触摸和单击行为?
我和朋友一起开发一个应用程序,我希望按钮通过改变背景和振动来视觉上按下,然后当释放时它会执行该按钮应该执行的任何操作。
我现在拥有的按钮只有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以仅使用 OnTouchListener 来完成此操作:
希望它有帮助。
You could do this by only using the OnTouchListener:
Hope it helps.