目前水平滚动条仅在用户与其交互时才可见。但我希望滚动条始终闪烁,以便用户可以知道右边有一些项目。我不想保留它总是可见的。如果有人有解决方案,请告诉我。
<HorizontalScrollView
android:id="@+id/featured_horizontal"
android:layout_below="@id/featured_bar"
android:layout_marginTop="8dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
答案 0 :(得分:0)
Timer timer = new Timer();
timer.schedule(new TimerTask() {
@Override
public void run() {
runOnUiThread(new Runnable() {
@Override
public void run() {
horScrollViewOG.scrollBy(1, 0);
horScrollViewOG.scrollBy(-1, 0);
}
});
}
}, 0, 1000);
Check this, it will scroll the list view programtically, which will display the scroll bar