2012-07-05 87 views
3

我開發了一個具有不同小部件的用戶表單。我設置滾動選項,但無法生成滾動條,因此無法滾動到最後一個選項。以下是代碼。任何人都可以指導我解決這個問題android中沒有生成滾動視圖

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:orientation="vertical" 
    android:scrollbars="vertical" 
    android:scrollbarAlwaysDrawVerticalTrack="true" 
    android:scrollbarStyle="outsideInset" android:isScrollContainer="true" 
    android:overScrollMode="always" 
    > 

    .............. 

    </LinearLayout> 

回答

1

你必須將你的LinearLayout包裝在ScrollView中。 並刪除LinearLayout中的滾動參數,它們不起作用。

注:一個ScrollView只能有一個嵌套的孩子!所以它應該是你的主要佈局。

1

您必須將您的線性佈局包裝在滾動視圖中。這裏是一個例子:

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 
    android:id="@+id/scroller" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:fillViewport="true" > 

    <LinearLayout 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:orientation="vertical"> 

    // YOUR CONTENT GOES HERE 

    </LinearLayout>  
</ScrollView> 
+0

thansk。問題解決了 – 2012-07-06 03:49:56

+0

@Android_Developer嘿。請upvote並打勾我的答案,如果它幫助:) – Doomsknight 2012-07-06 08:10:33