跳到主要内容

ScrollView滚动框

说明

可以滚动的布局控件,子元素只能有一个

使用示例

<ScrollView
android:fillViewport="true"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout android:layout_height="match_parent"
android:orientation="vertical"
android:layout_width="match_parent">
<TextView android:layout_width="match_parent"
android:layout_height="match_parent"
android:tag="sctest"
/>
</LinearLayout>

</ScrollView>

属性说明

公有属性

请参考 公有属性

私有属性

属性名说明可选值
layout_weight子元素权重数字
当父级为LinearLayout的时候,子控件可以设置权重
fillViewport填充所有视图true: 是 false:否