如何在通知栏上绘制?

发布于 2024-10-09 11:58:04 字数 165 浏览 6 评论 0原文

我需要绘制一个在通知栏上绘制的矩形,但我无法让它工作。代码如下所示:

canvas.drawRect(0,0, 200, 200, mLoadPaint);

但是 0, 0 位于通知栏下方,而不是上方。如何在通知栏上绘制?

I need to draw a rectangle that is drawn over the notification bar, but I'm unable to get it to work. The code looks like this:

canvas.drawRect(0,0, 200, 200, mLoadPaint);

But 0, 0 is just bellow the notification bar, instead of over it. How can I draw over the notification bar?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

得不到的就毁灭 2024-10-16 11:58:04

尝试将 Activity 的主题更改为如下主题: http:// developer.android.com/reference/android/R.style.html#Theme_Light_NoTitleBar_Fullscreen

<activity class="AddRssItem" android:label="Add an item" android:theme="@android:style/....

Try changing the theme of your Activity to something like this one: http://developer.android.com/reference/android/R.style.html#Theme_Light_NoTitleBar_Fullscreen

<activity class="AddRssItem" android:label="Add an item" android:theme="@android:style/....
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文