美文网首页
ScrollView实现滚动效果

ScrollView实现滚动效果

作者: 晨曦诗雨 | 来源:发表于2018-12-30 13:10 被阅读0次

    俩种方式

    水平方向
    垂直方向

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical" android:layout_width="match_parent"
        android:layout_height="match_parent">
        <!--水平
          ScrollView垂直-->
        <HorizontalScrollView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/scroll"
            android:scrollbars="none">
        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/text"
            />
        </HorizontalScrollView>
    
    </LinearLayout>
    
    image.png

    相关文章

      网友评论

          本文标题:ScrollView实现滚动效果

          本文链接:https://www.haomeiwen.com/subject/gbxvkqtx.html