1、单独的TextView控件设置滚动条
<TextView
android:
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="file content is empty!"
android:scrollbars="vertical"
android:fadeScrollbars="false"/>
(());
经过上面两个步骤,TextView就可以上下滚动了,如果想自定义滚动条,接着在xml里面加入属性:
android:scrollbarThumbVertical="@drawable/ic_launcher" //滑块的图片
android:scrollbarTrackVertical="@drawable/ic_launcher" //滑道的图片
ScrollBar由两部分组成,一个是Track(滑道),一个是Thumb(滑块)
2、也可以用ScrollView
<ScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:scrollbars="vertical"
android:fadingEdge="vertical">
<TextView
android:
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="file content is empty!"/>
</ScrollView>