Android   发布时间:2022-04-28  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了android – 自定义通知最大高度?大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试制作自定义通知,但它总是很小(大约是大多数通知的大小).我可以看到Netflix和Youtube在投射到chromecast设备时会显示更大的通知,这些通知看起来是自定义的(它们可能是大视图).他们如何让他们变得那么大? @H_874_5@ @H_874_5@谢谢.

@H_874_5@编辑:由于评论指出bigContentView,将其标记为已回答

解决方法

你似乎已经知道了…你可能正在谈论大视图风格的通知.谷歌有 specific training documentation以及 a technical guide.这是一些示例代码: @H_874_5@ @H_874_5@
// Constructs the Builder object.
NotificationCompat.builder builder =
        new NotificationCompat.builder(this)
        .setsmallIcon(R.drawable.ic_stat_notification)
        .setContenttitle(getString(R.String.notification))
        .setContentText(getString(R.String.ping))
        .setDefaults(Notification.DEFAULT_ALL) // requires VIBRATE permission
        /*
         * Sets the big view "big text" style and supplies the
         * text (the user's reminder messagE) that will be displayed
         * in the detail area of the expanded notification.
         * these calls are ignored by the support library for
         * pre-4.1 devices.
         */
        .setStyle(new NotificationCompat.bigTextStyle()
                .bigText(msg))
        .addAction (R.drawable.ic_stat_dismiss,getString(R.String.dismiss),piDismiss)
        .addAction (R.drawable.ic_stat_snooze,getString(R.String.snoozE),pisnoozE);
@H_874_5@注意对setStyle的调用.

大佬总结

以上是大佬教程为你收集整理的android – 自定义通知最大高度?全部内容,希望文章能够帮你解决android – 自定义通知最大高度?所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。