diff --git a/src/main/kotlin/com/looker/droidify/database/Tables.kt b/src/main/kotlin/com/looker/droidify/database/Tables.kt index 5ee964ef..9a928b18 100644 --- a/src/main/kotlin/com/looker/droidify/database/Tables.kt +++ b/src/main/kotlin/com/looker/droidify/database/Tables.kt @@ -9,6 +9,7 @@ import com.looker.droidify.entity.Repository import com.looker.droidify.utility.jsonGenerate import com.looker.droidify.utility.jsonParse +// TODO LATER: reduce redundancy by merging the entity and database classes @Entity class Repository { @PrimaryKey(autoGenerate = true) diff --git a/src/main/res/layout/fragment_explore_x.xml b/src/main/res/layout/fragment_explore_x.xml index c6c18164..90a11eee 100644 --- a/src/main/res/layout/fragment_explore_x.xml +++ b/src/main/res/layout/fragment_explore_x.xml @@ -39,7 +39,7 @@ android:layout_height="match_parent" android:clipChildren="false" android:clipToPadding="false" - android:scrollIndicators="end" + android:scrollbars="none" tools:listitem="@layout/item_app_vertical_x" /> diff --git a/src/main/res/layout/fragment_installed_x.xml b/src/main/res/layout/fragment_installed_x.xml index 9bea4a68..965f3b73 100644 --- a/src/main/res/layout/fragment_installed_x.xml +++ b/src/main/res/layout/fragment_installed_x.xml @@ -72,7 +72,7 @@ android:layout_height="wrap_content" android:clipToPadding="false" android:orientation="horizontal" - android:scrollbars="none" + android:scrollbars="horizontal" app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" @@ -135,7 +135,7 @@ android:layout_height="match_parent" android:clipChildren="false" android:clipToPadding="false" - android:scrollIndicators="end" + android:scrollbars="none" tools:listitem="@layout/item_app_vertical_x" /> diff --git a/src/main/res/layout/item_app_horiz_x.xml b/src/main/res/layout/item_app_horiz_x.xml index a42b2e3b..3514bc3f 100644 --- a/src/main/res/layout/item_app_horiz_x.xml +++ b/src/main/res/layout/item_app_horiz_x.xml @@ -22,7 +22,6 @@ android:layout_marginBottom="4dp" android:elevation="8dp" android:src="@drawable/ic_application_default" - android:tint="?colorPrimary" app:layout_constraintBottom_toTopOf="@id/name" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent"