3
A
回答
1
我在官方的Android資源中找到了一個例子:FragmentLayout。類DetailsFragment包含一個包含TextView的ScrollView。
我試過這個例子,它在3.0 SDK模擬器上工作。 如果它不能解決你的問題,你能提供你的代碼的更多細節?
0
或者,你可能更願意只實現了滾動在XML佈局文件:How to use ScrollView in Android?
0
使用滾動型標籤的碎片,要滾動。它正在我的項目中工作。這只是一個建議,因爲我不知道你的項目或你想在屏幕上滾動的內容。
3
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
//enclose your code for contents of fragment here. This helped me to add scroll view to the fragment
</ScrollView>
0
ScrollView無法在片段中使用,因爲您無法在同一父級下膨脹很多片段。您可以使用RelativeLayout或LinearLayout,並將ScrollView作爲內部佈局。
還檢出com.android.widget
文件夾中的新FragmentLayout。
相關問題
- 1. 水平ScrollView在片段Android
- 2. ScrollView不滾動片段
- 3. Scrollview不工作在片段
- 4. ScrollView - 在片段中使用scrollTo
- 5. ScrollView裏面的片段不滾動
- 6. Scrollview不滾動完全在片段,Android
- 7. 谷歌地圖片段內scrollView
- 8. Android ScrollView不顯示片段中的底部內容
- 9. ScrollView中的片段給黑色背景閃爍
- 10. 如何在選項卡活動中使用片段內的scrollview?
- 11. 在RelativeLayout中使用ScrollView的片段> ontouch不起作用
- 12. ScrollView裏面的卡片
- 13. ViewPager/ScrollView具有多種視圖/不同大小的片段
- 14. ScrollView顯示額外的空間,同時顯示片段
- 15. ScrollView裏面的片段相對佈局不起作用
- 16. 在scrollview中滾動ViewPager中的一個片段與軟鍵盤可見
- 17. 片段後android中的片段
- 18. Android - 片段中的對話框片段
- 19. ViewPager中另一個片段的片段
- 20. Android中的片段 - 片段通信
- 21. 片段中的片段不刷新
- 22. 在動畫片段中的動畫片段中添加小孩在動畫片段中的動畫片段中
- 23. 調整Iphone ScrollView中斷字段
- 24. 片段內的片段
- 25. 片段標籤的片段
- 26. 片段上方的片段
- 27. 片段內部的片段
- 28. YouTubePlayerView中的片段
- 29. Knopflerfish中的片段
- 30. 片段中的getMapAsync
鏈接改變了嗎?不能找到它... – meda