如何在 Android Galaxy tab 10.1 中隐藏状态栏?

发布于 2024-12-17 19:14:30 字数 168 浏览 3 评论 0原文

我的一位客户希望始终在顶部运行他们的应用程序,因此他们希望隐藏 Galaxy Tab 10.1、p7500 上的状态栏。这可能吗?
有人发布了一些 Android HoneyComb 的方法。我们在 Galaxy tab 7500 上尝试过,没有 ROOT 访问权限,但不起作用。有人有同样的经历吗?请帮忙。 谢谢

One of my customer want to run their application on top always, so they want to hide the status bar on galaxy tab 10.1, p7500. is that possible?
Some one has posted some way to Android HoneyComb. we've try it on Galaxy tab 7500, without ROOT access, and it doesn't work. do some one has the same experience? please help.
Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

彻夜缠绵 2024-12-24 19:14:30

您可以按照 这篇文章

you can use the FullScreen Theme as explained in this article.

烟雨扶苏 2024-12-24 19:14:30

我找到了一种方法来隐藏屏幕底部的该栏(Galaxy Tab 2 10.1),但是,使用此方法将使该栏在与触摸屏交互时出现。

如果这是您想要的,您可以使用以下代码来完成:

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    getWindow().addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN);
    getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_HIDE_NAVIGATION | View.SYSTEM_UI_FLAG_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_STABLE);
    ...
}

并将

@Override
public boolean onTouchEvent(MotionEvent event) {

    getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_HIDE_NAVIGATION | View.SYSTEM_UI_FLAG_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_STABLE);

    return true;
}

这两个片段放入您的活动代码中。
这个文档对我帮助很大。

I found a way how to hide that bar at the bottom of the screen (Galaxy Tab 2 10.1), however, using this method will make the bar appear when interacting with the touch screen.

If that is what you want, you can do it with the following code:

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    getWindow().addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN);
    getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_HIDE_NAVIGATION | View.SYSTEM_UI_FLAG_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_STABLE);
    ...
}

and

@Override
public boolean onTouchEvent(MotionEvent event) {

    getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_HIDE_NAVIGATION | View.SYSTEM_UI_FLAG_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_STABLE);

    return true;
}

Put these two snippets into your Activity code.
This doc helped me a lot.

↙厌世 2024-12-24 19:14:30

您可以在 oncreate 方法中使用以下代码

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    requestWindowFeature(Window.FEATURE_NO_TITLE);
    getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
    WindowManager.LayoutParams.FLAG_FULLSCREEN);

    setContentView(R.layout.main);

,也可以在清单文件中提到实现

 <activity android:name=".Myproject"
              android:label="@string/app_name"
              android:theme="@android:style/Theme.NoTitleBar"
              android:screenOrientation="portrait">

you can use following code in oncreate method

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    requestWindowFeature(Window.FEATURE_NO_TITLE);
    getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
    WindowManager.LayoutParams.FLAG_FULLSCREEN);

    setContentView(R.layout.main);

and you can also achived that in mention in manifest file

 <activity android:name=".Myproject"
              android:label="@string/app_name"
              android:theme="@android:style/Theme.NoTitleBar"
              android:screenOrientation="portrait">
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文