如何在android中启用滚动功能到线性布局?

sat*_*ish 12 android scroll android-linearlayout

任何人都可以帮我如何为linearlayout启用滚动功能?

Ren*_*eno 12

使用ScrollView?

<LinearLayout android:id="@+id/LinearLayout01"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    xmlns:android="http://schemas.android.com/apk/res/android">
    <ScrollView android:id="@+id/ScrollView01"
                android:layout_width="fill_parent"
                android:layout_height="110px">
    </ScrollView>
</LinearLayout>
Run Code Online (Sandbox Code Playgroud)


Ye *_*Min 10

您可以在滚动视图中放置任何内容以使某些内容(LinearLayout,RelativeLayout等)可滚动.您可以访问http://www.androidpeople.com/android-scrollview-example了解更多详情.