Skip to content

Commit

Permalink
Fixed fast scroll not enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
Super12138 committed Jan 31, 2024
1 parent bae5aaa commit 4ef123d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions app/src/main/res/layout/fragment_todo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@
android:id="@+id/todo_list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone">
android:visibility="gone"
app:fastScrollEnabled="true"
app:fastScrollHorizontalThumbDrawable="@drawable/thumb_drawable"
app:fastScrollHorizontalTrackDrawable="@drawable/line_drawable"
app:fastScrollVerticalThumbDrawable="@drawable/thumb_drawable"
app:fastScrollVerticalTrackDrawable="@drawable/line_drawable">

</androidx.recyclerview.widget.RecyclerView>

Expand All @@ -30,10 +35,5 @@
android:layout_margin="16dp"
android:contentDescription="@string/add_task"
android:text="@string/add_task"
app:icon="@drawable/ic_add"
app:fastScrollEnabled="true"
app:fastScrollHorizontalThumbDrawable="@drawable/thumb_drawable"
app:fastScrollHorizontalTrackDrawable="@drawable/line_drawable"
app:fastScrollVerticalThumbDrawable="@drawable/thumb_drawable"
app:fastScrollVerticalTrackDrawable="@drawable/line_drawable" />
app:icon="@drawable/ic_add" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>

0 comments on commit 4ef123d

Please sign in to comment.