Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个 android 应用程序,其中我们有标准的登录注册页面。
我想问一下 onClick 监听器和 onTouch 监听器,哪个动作监听器更适合在按钮上实现动作。如果我使用任何监听器会有什么效果吗?
用于onClick常规按钮点击。
onClick
onTouch用于手势检测(滑动、点击、双击等)
onTouch
我认为如果你也没有移开手指,onTouch 会在你触摸时调用。
一旦您单击并移除手指,onClick 就会调用