如何在启动时控制导航栏和按钮

问题描述 投票:0回答:1

Android

你好。

我想在启动画面中调整设备分辨率和启动图像的大小。我确实尝试将png文件应用于9patch。但我在设备到导航栏之间做了差距。

我会尝试,尝试,尝试,我已达到这一点。

我不知道如何控制导航栏和按钮。请拜托,教我如何在启动画面中隐藏导航栏或如何更改导航栏按钮中的颜色。

请审核并提供反馈。

android navigationbar splash
1个回答
0
投票

有一些代码会更好,所以我们可以建议可以改进的地方。但是这里有一些来自android开发者文档的建议。

 View decorView = getWindow().getDecorView();
// Hide both the navigation bar and the status bar.
// SYSTEM_UI_FLAG_FULLSCREEN is only available on Android 4.1 and higher, but as
// a general rule, you should design your app to hide the status bar whenever you
// hide the navigation bar.
int uiOptions = View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
              | View.SYSTEM_UI_FLAG_FULLSCREEN;
decorView.setSystemUiVisibility(uiOptions);

在这里阅读更多关于如何隐藏导航栏的内容。 Link

© www.soinside.com 2019 - 2024. All rights reserved.