Android移植-状态栏定制
您好,我正在尝试修改 android 中的状态栏图标。要修改文件 statusbar_background.9.png。 1.但是有人可以建议我如何使其透明吗? 至于定制,我们可以将状态栏宽度调整为相对大小吗?意思是,基于屏幕上出现的图标数量? 我正在修改文件 /frameworks/base/packages/systemui/src/com/android/systemui/statusbar/statusbarservice.java
请给我一些建议 谢谢 抗体
Hi I am trying to modify the statusbar icon in android. The file, statusbar_background.9.png is to modified.
1. But could some one suggest me how to make it transparent?
As for the customization, can we resize status bar width to a relative size? means,based on number of icons present on the screen?
I am modifying the file /frameworks/base/packages/systemui/src/com/android/systemui/statusbar/statusbarservice.java
Please give me some suggestion
Thanks
Ab
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我终于找到了问题的答案。
我更改了以下内容:
android:background="@drawable/statusbar_background"
到
/framework/base/packages/systemui/res/statusbar.xml
文件内。要调整状态栏的大小,需要执行以下操作:
使用以下内容修改
StatusbarService.java
文件中的protected void addStatusBarView()
函数:Finally I found the answer for my question.
I changed the following:
android:background="@drawable/statusbar_background"
to
inside the
/framework/base/packages/systemui/res/statusbar.xml
file.For resizing the status bar need to do the following:
modify the
protected void addStatusBarView()
function inStatusbarService.java
file with the following: