Android P的Android导航栏可见性-检测基于手势的导航

时间:2019-03-01 10:10:59

标签: android navigation android-9.0-pie

如何检测导航栏(对于不带Bazel的设备)是否可见?我尝试使用资源标识符系统UI标记 KeyCharacterMap 对导航栏使用其他解决方案,但是它不适用于我。在 Andorid P 中,可以使用手势导航,该导航将隐藏导航栏,并且导航功能将使用该手势运行。有什么解决方案可以检测到这一点吗?

1 个答案:

答案 0 :(得分:0)

我使用两种手势导航方法在小米设备上测试了此代码,对我来说它正在工作:

Point p = new Point();
        getWindow().getWindowManager().getDefaultDisplay().getRealSize(p);
        ConstraintLayout container = findViewById(your activity main view (e.g linearLayout));

        final TypedArray styledAttributes = getTheme().obtainStyledAttributes(
                new int[]{android.R.attr.actionBarSize});
        int mActionBarSize = (int) styledAttributes.getDimension(0, 0);
        int height = container.getMeasuredHeight();
        int resourceId = getResources().getIdentifier("status_bar_height", "dimen", "android");
        int result = 0;
        if (resourceId > 0) {
            result = getResources().getDimensionPixelSize(resourceId);
        }
if (height + mActionBarSize + result >= p.y) {
     //you have fullscreen gesture navigation
}else{
     //navigation bar or similiar
}

之所以可行,是因为该应用现在可以在屏幕上显示更大的尺寸,因此仅当手势导航方法没有使“导航栏”成为背景时,它才可以工作。

请务必在主电源已加载且可见时使用它,否则它将返回0。