文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

【Android】获取导航栏、状态栏高度

2023-09-03 18:19

关注

获取状态栏高度

public static int getStatusBarHeight(Context context) {    int result = 0;    int resourceId = context.getResources().getIdentifier("status_bar_height", "dimen", "android");    if (resourceId > 0) {        result = context.getResources().getDimensionPixelSize(resourceId);    }    return result;}

或者

getWindow().getDecorView().setOnApplyWindowInsetsListener((v, insets) -> {    int statuBarHeight = insets.getStableInsetTop();    return insets;});

获取导航栏高度

public static int getNavigationBarHeight(Context context) {    int result = 0;    int resourceId = context.getResources().getIdentifier("navigation_bar_height", "dimen", "android");    if (resourceId > 0) {        result = context.getResources().getDimensionPixelSize(resourceId);    }    return result;}

或者

getWindow().getDecorView().setOnApplyWindowInsetsListener((v, insets) -> {    int navigationBarHeight = insets.getStableInsetBottom();    return insets;});

其他数据

系统的各种数据定义位于SDK的xml文件中:

android-30/data/res/values/dimens.xml

<dimen name="toast_y_offset">24dpdimen><dimen name="status_bar_height">@dimen/status_bar_height_portraitdimen><dimen name="status_bar_height_portrait">24dpdimen><dimen name="status_bar_height_landscape">@dimen/status_bar_height_portraitdimen><dimen name="navigation_bar_height">48dpdimen><dimen name="navigation_bar_height_landscape">48dpdimen><dimen name="navigation_bar_width">48dpdimen>

通过key可以获取对应的值。

修改导航栏、状态栏背景色

getWindow().setStatusBarColor(Color.RED);getWindow().setNavigationBarColor(Color.RED);

源码

导航栏和状态栏源码相似

#PhoneWindow@Overridepublic void setStatusBarColor(int color) {    mStatusBarColor = color;    mForcedStatusBarColor = true;    if (mDecor != null) {        mDecor.updateColorViews(null, false );    }}
#DecorViewpublic static final ColorViewAttributes STATUS_BAR_COLOR_VIEW_ATTRIBUTES =        new ColorViewAttributes(SYSTEM_UI_FLAG_FULLSCREEN, FLAG_TRANSLUCENT_STATUS,                Gravity.TOP, Gravity.LEFT, Gravity.RIGHT,                Window.STATUS_BAR_BACKGROUND_TRANSITION_NAME,                com.android.internal.R.id.statusBarBackground,                FLAG_FULLSCREEN, ITYPE_STATUS_BAR);public static final ColorViewAttributes NAVIGATION_BAR_COLOR_VIEW_ATTRIBUTES =        new ColorViewAttributes(                SYSTEM_UI_FLAG_HIDE_NAVIGATION, FLAG_TRANSLUCENT_NAVIGATION,                Gravity.BOTTOM, Gravity.RIGHT, Gravity.LEFT,                Window.NAVIGATION_BAR_BACKGROUND_TRANSITION_NAME,                com.android.internal.R.id.navigationBarBackground,                0 , ITYPE_NAVIGATION_BAR);private final ColorViewState mStatusColorViewState = new ColorViewState(STATUS_BAR_COLOR_VIEW_ATTRIBUTES);private final ColorViewState mNavigationColorViewState = new ColorViewState(NAVIGATION_BAR_COLOR_VIEW_ATTRIBUTES);
WindowInsets updateColorViews(WindowInsets insets, boolean animate) {...    updateColorViewInt(mNavigationColorViewState, sysUiVisibility,             calculateNavigationBarColor(), mWindow.mNavigationBarDividerColor, navBarSize,             navBarToRightEdge || navBarToLeftEdge, navBarToLeftEdge,             0 , animate && !disallowAnimate,             mForceWindowDrawsBarBackgrounds, controller);...    updateColorViewInt(mStatusColorViewState, sysUiVisibility,              calculateStatusBarColor(), 0, mLastTopInset,              false , statusBarNeedsLeftInset, statusBarSideInset,              animate && !disallowAnimate,              mForceWindowDrawsBarBackgrounds, controller);}

调用updateColorViews更新背景色的方法,还有如下位置:
在这里插入图片描述

#ViewRootImplprivate void performTraversals() {dispatchApplyInsets(host);}public void dispatchApplyInsets(View host) {     mApplyInsetsRequested = false;     WindowInsets insets = getWindowInsets(true );     host.dispatchApplyWindowInsets(insets);...}#Viewpublic WindowInsets dispatchApplyWindowInsets(WindowInsets insets) {    ...    return onApplyWindowInsets(insets);...}#DecorView@Overridepublic WindowInsets onApplyWindowInsets(WindowInsets insets) {    ...    insets = updateColorViews(insets, true);    ...    return insets;}

关于WindowInsets

WindowInsets可以翻译为窗口附加物,一般是指一个界面中,不由开发者直接控制的部分,例如:状态栏、底部的导航栏等等。具体的类型在Type中有定义:

#WindowInsets.Typestatic final int FIRST = 1 << 0;static final int STATUS_BARS = FIRST;static final int NAVIGATION_BARS = 1 << 1;static final int CAPTION_BAR = 1 << 2;static final int IME = 1 << 3;static final int SYSTEM_GESTURES = 1 << 4;static final int MANDATORY_SYSTEM_GESTURES = 1 << 5;static final int TAPPABLE_ELEMENT = 1 << 6;static final int DISPLAY_CUTOUT = 1 << 7;static final int LAST = 1 << 8;static final int SIZE = 9;static final int WINDOW_DECOR = LAST;

可以向DecorView添加监听,处理WindowInsets

getWindow().getDecorView().setOnApplyWindowInsetsListener((v, insets) -> {    return insets;});

所以,可以在这里获取导航栏和状态栏的高度:

getWindow().getDecorView().setOnApplyWindowInsetsListener((v, insets) -> {    int statuBarHeight = insets.getStableInsetTop();    int navigationBarHeight = insets.getStableInsetBottom();    return insets;});

也可以修改导航栏和状态栏的高度(好像没有应用场景):

getWindow().getDecorView().setOnApplyWindowInsetsListener((v, insets) -> {    int statuBarHeight = 0;    int navigationBarHeight = 0;    return insets.replaceSystemWindowInsets(0,statuBarHeight,0,navigationBarHeight);;});

来源地址:https://blog.csdn.net/qq_23049111/article/details/126948312

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-移动开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯