3

我正在做一些Android 3.0中的片段。在其中一個片段中,我需要滾動條。我嘗試使用ScrollView,但它沒有給我一個片段的滾動條。片段中的ScrollView

如何獲取片段的滾動條?

回答

1

我在官方的Android資源中找到了一個例子:FragmentLayout。類DetailsFragment包含一個包含TextView的ScrollView。

我試過這個例子,它在3.0 SDK模擬器上工作。 如果它不能解決你的問題,你能提供你的代碼的更多細節?

+0

鏈接改變了嗎?不能找到它... – meda

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。