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.
ビューに触れているときにスクロールを停止するには? 動的にデータが追加されているアラート ダイアログ ボックスを使用していますが、ビューをクリックしてもスクロールが止まらないため、項目を選択するのが難しく感じます。誰でも助けて もらえますかリストビューは使用されていません
このコードを試してください:
YourList.setOnTouchListener(new View.OnTouchListener() { public boolean onTouch(View v, MotionEvent event) { return (event.getAction() == MotionEvent.ACTION_MOVE); } });