Revert "widgets: reduce cover size limit"
This reverts commit 2ecb94c97e
.
This commit is contained in:
parent
74e0da526d
commit
4ee2e81995
1 changed files with 2 additions and 2 deletions
|
@ -51,11 +51,11 @@ fun newRemoteViews(context: Context, @LayoutRes layoutRes: Int): RemoteViews {
|
|||
* there is only one image.
|
||||
*
|
||||
* @param context [Context] required to perform calculation.
|
||||
* @param reduce Optional multiplier to reduce the image size. Recommended value is 3 to avoid
|
||||
* @param reduce Optional multiplier to reduce the image size. Recommended value is 2 to avoid
|
||||
* device-specific variations in memory limit.
|
||||
* @return The dimension of a bitmap that can be safely used in [RemoteViews].
|
||||
*/
|
||||
fun getSafeRemoteViewsImageSize(context: Context, reduce: Float = 3f): Int {
|
||||
fun getSafeRemoteViewsImageSize(context: Context, reduce: Float = 2f): Int {
|
||||
val metrics = context.resources.displayMetrics
|
||||
val sw = metrics.widthPixels
|
||||
val sh = metrics.heightPixels
|
||||
|
|
Loading…
Reference in a new issue