Skip to content

Commit d2dcc54

Browse files
committed
make sure the recyclerview fastscroller is properly below the breadcrumbs
1 parent 05e253f commit d2dcc54

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

app/build.gradle

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,16 +46,15 @@ ext {
4646
}
4747

4848
dependencies {
49-
implementation 'com.simplemobiletools:commons:2.39.10'
50-
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
49+
implementation 'com.simplemobiletools:commons:2.41.1'
5150

5251
implementation files('../libs/RootTools.jar')
5352

5453
debugImplementation "com.squareup.leakcanary:leakcanary-android:$leakCanaryVersion"
5554
releaseImplementation "com.squareup.leakcanary:leakcanary-android-no-op:$leakCanaryVersion"
5655
}
5756

58-
def Properties props = new Properties()
57+
Properties props = new Properties()
5958
def propFile = new File('signing.properties')
6059
if (propFile.canRead()) {
6160
props.load(new FileInputStream(propFile))

app/src/main/res/layout/items_fragment.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
android:id="@+id/items_list"
2727
android:layout_width="match_parent"
2828
android:layout_height="wrap_content"
29-
android:layout_below="@id/breadcrumbs"
29+
android:layout_below="@+id/breadcrumbs"
3030
android:clipToPadding="false"
3131
android:paddingLeft="@dimen/activity_margin"
3232
android:scrollbars="none"
@@ -38,6 +38,7 @@
3838
android:layout_height="match_parent"
3939
android:layout_alignParentEnd="true"
4040
android:layout_alignParentRight="true"
41+
android:layout_below="@+id/breadcrumbs"
4142
android:paddingLeft="@dimen/normal_margin"
4243
android:paddingStart="@dimen/normal_margin">
4344

0 commit comments

Comments
 (0)