Advertisement

Android ScrollView 功能用于实现小说界面的自动滚屏

阅读量:

前言

当前正在开发一款阅读器,计划引入自动滚动功能以提升阅读体验的便捷性。

实现

在XML布局中嵌入一个可滚动视图组件,该组件内部包含一个用于输入或展示文字的文本编辑区域。

复制代码
     <RelativeLayout
        android:id="@+id/relativeLayout"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
    
        <Button
            android:id="@+id/auto_scroll"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginBottom='0dp'
            android:text="Button" />
    
        <ScrollView
            android:id="@+id/scrollView"
            android:layout_width="

全部评论 (0)

还没有任何评论哟~