- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在使用新的 Notification.MediaStyle 类向 FTP 流式音乐播放器应用程序实现 Lollipop 风格的通知。我将专辑封面设置为我的“大图标”。
鉴于专辑封面直接取自当前正在播放的文件,专辑封面的大小因来源而异(可能高达 5000x5000)。
从我的 pre-lollipop 代码中,我在以下定义的最大尺寸下解码位图:android.R.dimen.notification_large_icon_width
和android.R.dimen.notification_large_icon_height
效果很好,因为解码时间更快,内存使用也很理想。
但是,当此代码应用于我的 MediaStyle 样式时,展开 View 使用的图标比尺寸参数定义的图标大得多,导致展开时专辑封面模糊。
是否有一些常量来定义 MediaStyle 大图标的展开 View 的最大尺寸?或者这个问题有一些解决方法吗?按照目前的情况,以全分辨率解码艺术作品是 Not Acceptable ,因为这可能会导致应用程序因 OOM 而崩溃。
最佳答案
从 Lollipop 源代码我可以看到图像大小是 128dp,参见 notification_template_material_big_media.xml on GitHub :
<!-- Layout to be used with only max 3 actions. It has a much larger picture at the left side-->
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/status_bar_latest_event_content"
android:layout_width="match_parent"
android:layout_height="128dp"
android:background="#00000000"
android:tag="bigMediaNarrow"
>
<ImageView android:id="@+id/icon"
android:layout_width="128dp"
android:layout_height="128dp"
android:scaleType="centerCrop"
/>
<!-- ...Nothing interesting for us futher... -->
</RelativeLayout>
这适用于具有 3 个或更少操作按钮的扩展布局。期待Notification.MediaStyle.getBigLayoutResource(int) on GrepCode ,如果有更多的按钮似乎notification_template_material_big_media.xml使用:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/status_bar_latest_event_content"
android:layout_width="match_parent"
android:layout_height="128dp"
android:background="#00000000"
android:tag="bigMedia"
>
<include layout="@layout/notification_template_icon_group"
android:layout_width="@dimen/notification_large_icon_width"
android:layout_height="@dimen/notification_large_icon_height"
/>
<!-- ...Nothing interesting for us futher... -->
</RelativeLayout>
和notification_template_icon_group.xml看起来像这样:
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:internal="http://schemas.android.com/apk/prv/res/android"
android:layout_width="@dimen/notification_large_icon_width"
android:layout_height="@dimen/notification_large_icon_height"
android:id="@+id/icon_group"
>
<ImageView android:id="@+id/icon"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="12dp"
android:layout_marginBottom="12dp"
android:layout_marginStart="12dp"
android:layout_marginEnd="12dp"
android:scaleType="centerInside"
/>
<ImageView android:id="@+id/right_icon"
android:layout_width="16dp"
android:layout_height="16dp"
android:padding="3dp"
android:layout_gravity="end|bottom"
android:scaleType="centerInside"
android:visibility="gone"
android:layout_marginEnd="8dp"
android:layout_marginBottom="8dp"
/>
</FrameLayout>
您可以在 .../res/values/dimens.xml 中找到 notification_large_icon_width
和 notification_large_icon_height
:
<!-- The width of the big icons in notifications. -->
<dimen name="notification_large_icon_width">64dp</dimen>
<!-- The width of the big icons in notifications. -->
<dimen name="notification_large_icon_height">64dp</dimen>
所以最终答案 - 128dp 用于带有 3 个或更少操作按钮的扩展布局,如果有超过 3 个则为 64dp。
关于android - MediaStyle LargeIcon 的大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27984766/
我正在使用新的 Notification.MediaStyle 类向 FTP 流式音乐播放器应用程序实现 Lollipop 风格的通知。我将专辑封面设置为我的“大图标”。 鉴于专辑封面直接取自当前正在
我正在为特定目的/应用程序构建自定义 ListView 控件,其中我必须显示画廊。为此,我使用所有者绘制过程在 ListView 中手动绘制图像。 我在 ListView 中的图像将是 128x128
我发现自己很好奇为什么 Notification.Builder 上的 setLargeIcon 方法只接受位图,而没有重载来提供资源 ID。也许是出于性能原因这样做,但 setSmallIcon 确
我实际上使用的是 PushBots实现GCM我的应用程序的通知。 当我创建通知时,他们让我可以选择使用特定字段,我可以在其中为我的推送设置 largeIcon。如果我使用它,我会得到这样的结果: 但是
我是一名优秀的程序员,十分优秀!