Android 设置TextView滑动滚动条和滑动效果

时间:2025-01-14 20:54:44

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"
/>


在activity中为这个TextView设置:

  mFileContentView = (TextView) findViewById();
  (());


经过上面两个步骤,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>