We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cfba2c2 commit 0f1e370Copy full SHA for 0f1e370
1 file changed
app/src/main/res/layout/activity_file_selector.xml
@@ -22,15 +22,18 @@
22
android:layout_height="match_parent"
23
android:layout_gravity="start"
24
android:orientation="vertical">
25
-
26
- <!-- Nên thay ListView bằng RecyclerView -->
27
- <androidx.recyclerview.widget.RecyclerView
+
+ <ListView
28
android:id="@+id/file_selector_list"
29
android:layout_width="match_parent"
30
31
android:layout_marginTop="?attr/actionBarSize"
32
- android:scrollbars="vertical" />
33
+ android:fastScrollEnabled="true"
+ android:fadingEdge="vertical"
+ android:requiresFadingEdge="vertical"
34
+ android:scrollbarStyle="insideOverlay"
35
+ android:smoothScrollbar="true" />
36
37
</com.omarea.common.ui.BlurViewLinearLayout>
38
39
</androidx.drawerlayout.widget.DrawerLayout>
0 commit comments