Skip to content

Commit

Permalink
Added Fast Scroller
Browse files Browse the repository at this point in the history
Added fast scroller (#4)
  • Loading branch information
SnowVolf committed Jul 16, 2019
1 parent 996cd6f commit 3bbf46f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ dependencies {
implementation "androidx.annotation:annotation:1.1.0"
implementation "com.google.android.material:material:1.0.0"

implementation 'com.l4digital.fastscroll:fastscroll:2.0.1'
implementation 'com.afollestad.material-dialogs:commons:0.9.6.0'

playImplementation 'com.google.firebase:firebase-core:16.0.5'
Expand Down
6 changes: 4 additions & 2 deletions app/src/main/res/layout/activity_logcat.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
android:visibility="gone"
tools:visibility="visible" />

<androidx.recyclerview.widget.RecyclerView
<com.l4digital.fastscroll.FastScrollRecyclerView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"
Expand All @@ -41,7 +41,9 @@
android:paddingBottom="2dp"
android:paddingTop="1dp"
android:scrollbarSize="0dp"
android:scrollbars="vertical" />
android:scrollbars="vertical"
app:bubbleColor="?colorAccent"
app:handleColor="#999999"/>

<!--TODO: Change border width back to 0.5dp when design library is fixed-->
<com.google.android.material.floatingactionbutton.FloatingActionButton
Expand Down

1 comment on commit 3bbf46f

@SnowVolf
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh... Naturally, not #4, but #46. just a typo.

Please sign in to comment.