我在扩展通知中添加了按钮,有很多。
想法是在通知中进行电源控制或在其中显示最新的应用程序。
但是,对于LayoutInflater不允许夸大ScrollView

为此,必须有一种解决方法:要允许扩展通知中的UI向左和向右滚动。就像HTC Sense如何使用最新的Apps一样。

06-18 15:10:24.991: ERROR/StatusBar(1251): Caused by: android.view.InflateException: Binary XML file line #3: Class not allowed to be inflated android.widget.ScrollView

最佳答案

就像HTC Sense如何使用最新的应用程序。


HTC Sense(作为固件实现的一部分)未使用RemoteViews

您其余的分析都是正确的-您不能将ScrollView放在RemoteViews中。

关于android - 展开的通知中可能有某种ScrollView吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6399216/

10-12 02:11