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.
我使用画廊来展示照片。 它可以通过触摸屏滚动到上一个或下一个。 但我想设置一个按钮来锁定画廊。 我使用下面的代码来实现它:
gallery.setEnabled(false);
但它仍然可以通过触摸屏滚动查看。 我怎样才能到达它?
覆盖onTouchListner您的画廊
onTouchListner
gallery.setOnTouchListener(new OnTouchListener() { @Override public boolean onTouch(View v, MotionEvent event) { return true; } });