android / tv-samples

Multiple samples showing best practices in app development on Android TV.
Apache License 2.0
1.05k stars 332 forks source link

Add a scrollbar #82

Open SwordFishKe opened 2 years ago

SwordFishKe commented 2 years ago

I use VerticalGridView to replace RecycleView in Android TV app and set scrollbar for VerticalGridView in xml as below. But in the end the scrollbar is not showing.

android:scrollbarSize="@dimen/sw_3dp" android:scrollbarStyle="outsideInset" android:scrollbarThumbVertical="@color/white" android:scrollbarTrackVertical="@color/color_B0B0B0" android:scrollbars="vertical" After I added the following code, the scroll bar can be displayed. But the scrollbar only shows the track but not the thumb. android:fadeScrollbars="false" android:background="@color/transparent" android:scrollbarAlwaysDrawVerticalTrack="true" Can help me?

ZoneLai commented 8 months ago

Have you managed to resolve the issue? @SwordFishKe