我已經構建了一個應用程序,我需要使用滾動視圖。但我不需要滾動條出現在屏幕上。我怎樣才能做到這一點?請確保滾動功能正常。hide scrollview stick android
回答
在java中添加此代碼
myScrollView.setVerticalScrollBarEnabled(false);
myScrollView.setHorizontalScrollBarEnabled(false);
在XML以下屬性添加到您的滾動型
android:scrollbars="none"
像這樣
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/mainScroll"
android:scrollbars="none" <!-- line to be added -->
>
在XML設置android:scrollbars="none"
你能告訴我如何處理ScrollChanged事件嗎? – 2012-02-29 06:12:41
滾動功能不能使用此解決方案 – ergunkocak 2016-09-07 14:22:43
設置android:scrollbarSize="0dp"
試試這個,它也在努力......
android:scrollbarThumbVertical="@null"
或
android:scrollbarThumbHorizontal="@null"
這將隱藏滾動條柺杖,但滾動條不禁用
android:scrollbarThumbVertical="@null"
android:scrollbarThumbHorizontal="@null"
這將禁用滾動條
android:scrollbars="none"
這應該是問題的正確答案 – ergunkocak 2016-09-07 14:21:24
這應該是接受的答案。 – Yogesh 2016-12-13 18:53:59
隱藏垂直滾動條在XML做到這一點:
android:scrollbarThumbVertical="@null"
而對於隱藏水平滾動條做到這一點:
android:scrollbarThumbHorizontal="@null"
上面的代碼的行將工作,如果你想隱藏滾動條(不禁用它)
並禁用滾動條,寫這個:
android:scrollbars="none"
- 1. Android ScrollView
- 2. Stick SoundCloud播放器
- 3. 實現ScrollView Android?
- 4. Android的scrollView autosize
- 5. Android TableLayout ScrollView
- 6. Partial ScrollView - XML Android
- 7. ScrollView問題Android
- 8. android scrollview height
- 9. Android - ScrollView問題
- 10. Android - Recycleview Inside Scrollview
- 11. ScrollView在android
- 12. android scrollView max scroll
- 13. Android ViewFlipper Inside ScrollView
- 14. Android ScrollView錯誤
- 15. TItanium Android Scrollview unscrollable
- 16. android scrollview動畫
- 17. ScrollView中的Android WebView只滾動scrollview
- 18. 快速製作「Joy Stick」
- 19. ScrollView中的Android ListView
- 20. Android Programmatic Popup ScrollView TextView
- 21. android scrollview不工作
- 22. LinearLayout中的Android ScrollView
- 23. Android ScrollView填充60%
- 24. android layout with automatic scrollview
- 25. TabHost中的Android ScrollView
- 26. scrollView不工作android
- 27. Android ScrollView已完成?
- 28. Android Studio ScrollView模糊內容
- 29. Android中的@hide和{@hide}有什麼區別
- 30. 如何在Android Stick PC上安裝輕量級Linux發行版?
你能告訴我如何處理onScrollChanged事件? – 2012-02-29 06:11:38
看到這個問題可能會有所幫助。 http://stackoverflow.com/questions/4263053/android-scrollview-onscrollchanged – 2012-02-29 06:35:22
滾動功能不能用這個解決方案 – ergunkocak 2016-09-07 14:22:38