diff --git a/src/main/kotlin/com/looker/droidify/screen/ProductAdapter.kt b/src/main/kotlin/com/looker/droidify/screen/ProductAdapter.kt index 237e1220..ba5f09bf 100644 --- a/src/main/kotlin/com/looker/droidify/screen/ProductAdapter.kt +++ b/src/main/kotlin/com/looker/droidify/screen/ProductAdapter.kt @@ -356,7 +356,7 @@ class ProductAdapter(private val callbacks: Callbacks, private val columns: Int) init { itemView as TextView itemView.typeface = TypefaceExtra.medium - itemView.setTextSizeScaled(15) + itemView.setTextSizeScaled(14) itemView.setTextColor(itemView.context.getColorFromAttr(android.R.attr.textColor)) itemView.background = ResourcesCompat.getDrawable( diff --git a/src/main/kotlin/com/looker/droidify/screen/ScreenshotsFragment.kt b/src/main/kotlin/com/looker/droidify/screen/ScreenshotsFragment.kt index d8cb0393..464027b6 100644 --- a/src/main/kotlin/com/looker/droidify/screen/ScreenshotsFragment.kt +++ b/src/main/kotlin/com/looker/droidify/screen/ScreenshotsFragment.kt @@ -70,19 +70,15 @@ class ScreenshotsFragment() : DialogFragment() { } val background = - dialog.context.getColorFromAttr(android.R.attr.colorBackground).defaultColor + dialog.context.getColorFromAttr(R.attr.colorSurface).defaultColor decorView?.setBackgroundColor(background.let { ColorUtils.blendARGB( 0x00ffffff and it, it, - 0.9f + 1f ) }) decorView?.setPadding(0, 0, 0, 0) - background.let { ColorUtils.blendARGB(0x00ffffff and it, it, 0.8f) }.let { - window?.statusBarColor = it - window?.navigationBarColor = it - } if (window != null) { window.attributes = window.attributes.apply { title = ScreenshotsFragment::class.java.name diff --git a/src/main/res/layout/product_header_item.xml b/src/main/res/layout/product_header_item.xml index b8f349be..edd3ea42 100644 --- a/src/main/res/layout/product_header_item.xml +++ b/src/main/res/layout/product_header_item.xml @@ -39,7 +39,7 @@ android:fontFamily="sans-serif-medium" android:singleLine="true" android:textColor="?android:attr/textColor" - android:textSize="16sp" /> + android:textSize="17sp" />