我有一个带有ViewPager的Activity,其中有3个动态创建的片段.每个页面都有许多按钮和
ImageButton,它们可以自己激活onTouch..MotionEvent.ACTION_DOWN.
我遇到的问题是,当我尝试滑动ViewPager时,这些按钮会意外激活.
任何人都可以推荐一种方法来防止这种情况发生吗?
谢谢
玩笑
最佳答案 而不是使用onTouch..MotionEvent.ACTION_DOWN.
在ImageButton上我将使它们实现;
.OnItemClickListener() /This ensures that only when clicked they will call the desired functionality, I suggest you to check it out this way and let me know.
希望它有所帮助,更多信息; The Documentation for OnItemClickListener