如何修改 Android 状态栏高度

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何修改 Android 状态栏高度相关的知识,希望对你有一定的参考价值。

    反编译framework-res.apk
    2.打开res/values/dimens.xml文件
    3.修改如下代码:
    <dimen
    name="status_bar_height">25.0dip</dimen>

    <dimen
    name="status_bar_icon_size">25.0dip</dimen>
    4.第一个是状态栏的高度,25.0dip是我们现在看到的高度
    5.第二个是图标的高度
    6.回编译,替换resources.arsc到原来的apk里


framework-res.apk文件位于/system/framework文件夹中

参考技术A 修改 Android 状态栏高度:
配置文件:frameworks/base/core/res/res/values/dimens.xml

修改条目:

<resources>
<!-- The width that is used when creating thumbnails of applications. -->
<dimen name="thumbnail_width">0dp</dimen>
<!-- The height that is used when creating thumbnails of applications. -->
<dimen name="thumbnail_height">0dp</dimen>
<!-- The standard size (both width and height) of an application icon that
will be displayed in the app launcher and elsewhere. -->
<dimen name="app_icon_size">48dip</dimen>
<dimen name="toast_y_offset">64dip</dimen>
<!-- Height of the status bar -->
<dimen name="status_bar_height">38dip</dimen>
<!-- Height of the status bar -->
<dimen name="status_bar_icon_size">38dip</dimen>
<!-- Margin at the edge of the screen to ignore touch events for in the windowshade. -->
<dimen name="status_bar_edge_ignore">5dp</dimen>
<!-- Size of the fastscroll hint letter -->
<dimen name="fastscroll_overlay_size">104dp</dimen>
<!-- Width of the fastscroll thumb -->
<dimen name="fastscroll_thumb_width">64dp</dimen>
<!-- Height of the fastscroll thumb -->
<dimen name="fastscroll_thumb_height">52dp</dimen>
<!-- Default height of a key in the password keyboard -->
<dimen name="password_keyboard_key_height">56dip</dimen>
<!-- Default correction for the space key in the password keyboard -->
<dimen name="password_keyboard_spacebar_vertical_correction">4dip</dimen>
</resources>
参考技术B 电动工具和经济就看见看见了浏览器

教你如何修改状态栏提示的字体颜色教程(来短信提示字颜色)

如何修改状态栏提示的字体颜色教程由于很多人问这个问题,这里告诉大家,感谢幸运师傅指导,感谢平大提供好的ROM,有图有**,别说没图,自己懂就行了游客,如果您要查看本帖隐藏内容请回复

参考技术A 国际惯例,,迅速抢占沙发。。。。。。。。。。。。。。。。。。。 参考技术B 为什么我看不到T^T 参考技术C ,,,,

以上是关于如何修改 Android 状态栏高度的主要内容,如果未能解决你的问题,请参考以下文章

android中怎么计算标题栏高度

android状态栏高度是多少

如何获取状态栏和软键按钮栏的高度?

iOS 状态栏更改颜色

如何修改android标题栏界面

Android状态栏与布局重叠解决方案