1
A
回答
1
我將有一個去:
android:scrollbars="horizontal"
在視圖中的你的XML定義
,但是如果你使用的是滾動視圖,它不支持水平滾動,所以酒吧將不會顯示...
1
把屬性放在滾動視圖標籤。
android:scrollbars="horizontal"
1
horizontalscrollview http://developer.android.com/reference/android/widget/HorizontalScrollView.html在1.5
6
加入看一看這一點,它可以是U想要什麼。
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<HorizontalScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<TableLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TableRow
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ImageView android:src="@drawable/icon"/>
<ImageView android:src="@drawable/tube"/>
</TableRow>
<TableRow ....
</TableRow>
<TableRow ....
</TableRow>
</TableLayout>
</HorizontalScrollView>
</ScrollView>
1
如上所述將HorizontalScrollView放置在ScrollView中。 這裏是如何做到這一點的教程: http://androiddevblog.blogspot.com/2009/12/creating-two-dimensions-scroll-view.html
相關問題
- 1. DIV水平滾動條成爲主要水平滾動條
- 2. 水平滾動需要
- 3. 水平滾動+滾動條
- 4. 不必要的水平滾動條jqGrid
- 5. CSS - 不必要的水平滾動條
- 6. 不需要的水平滾動
- 7. 我需要水平滾動的GridView
- 8. 需要水平滾動,如鏈接
- 9. 解釋需要避免水平滾動
- 10. Android水平滾動
- 11. Viewpager水平滾動條未顯示 - Android-
- 12. 垂直滾動條在水平滾動條內不可見android
- 13. 不需要時會出現水平滾動條(僅限Chrome)
- 14. IE7中不需要的水平滾動條
- 15. 如何擺脫不需要的水平滾動條
- 16. ie7中的Coda-Slider問題,需要刪除水平滾動條
- 17. 不需要的水平滾動條在流體佈局
- 18. 設置QScrollbar寬度以防止需要水平滾動條
- 19. .NET MVC 3 - 不需要的水平滾動條
- 20. 如何僅在需要時才能看到水平滾動條?
- 21. 水平滾動條問題
- 22. webgrid與水平滾動條?
- 23. jqGrid水平滾動條
- 24. 刪除水平滾動條
- 25. 刪除水平滾動條
- 26. 刪除水平滾動條
- 27. 水平滾動條寬度
- 28. 水平滾動條丟失
- 29. Mootools的水平滾動條
- 30. XCode - 水平滾動條
Try this link它爲我.... – Rohith 2013-05-29 05:04:53