其他分享
首页 > 其他分享> > 我如何在活动创建时显示ScrollView滚动条2秒钟?

我如何在活动创建时显示ScrollView滚动条2秒钟?

作者:互联网

创建视图时,我只想显示滚动条2秒钟.有什么属性吗?

Actually it show when user touch the screen but I want to show it automatically for a few seconds so user can know this view is scroll-able.

<ScrollView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:scrollbarDefaultDelayBeforeFade="2000"
    android:scrollbarAlwaysDrawVerticalTrack="true">

解决方法:

在ScrollView的xml中添加android:id属性,并在活动中使用Timer或countdowntimer进行2秒钟通知,并在完成时设置ScrollView的可见性
 看不见.

标签:android-layout,android-scrollview,android-scrollbar,android
来源: https://codeday.me/bug/20191102/1990405.html