有没有办法隐藏Android 3.0中的系统栏?这是一个内部设备,我正在管理导航

时间:2011-02-24 20:23:51

标签: android android-3.0-honeycomb

在Android 2.3及更低版本中,您可以全屏显示应用程序,然后通过返回false onKeyDown()来“劫持”菜单/返回/搜索按钮...并将应用程序注册为默认的主启动器应用程序,这样,就无法退出应用程序。

在Android 3.0(Honeycomb)中,导航按钮(系统栏)始终存在,我想隐藏它。有可能吗?

仅供参考,我不会在Android电子市场上发布此应用程序。这是将在内部使用的设备的内部应用程序,我需要保护设备。

11 个答案:

答案 0 :(得分:31)

由于使用公共API无法做到这一点,我找到了一种方法,以非常“黑客”的方式进行,需要有根设备。

更新:,如下面的user864555所示,这是另一种解决方案

$ adb remount
$ adb shell mv /system/app/SystemUI.odex /system/app/SystemUI.odexold
$ adb shell mv /system/app/SystemUI.apk /system/app/SystemUI.apkold
$ adb reboot

“该代码禁用了实际菜单栏的应用程序SystemUI。哪个修改,您还将获得该系统栏的空间。但请确保有一个后退按钮或其他东西退出。”

这也很好用。请投票给他答案。我会尽量保持这个更新。


更新:这是第三种方法。一种以编程方式或使用命令行执行此操作的方法。在此处找到:http://android.serverbox.ch/?p=306

此方法需要root访问权限,但您无需更改LCD密度,保持与原始密度相同,并且您可以快速轻松地恢复UI导航栏,而无需每次都重新启动。

blog post还会显示如何在您的Android应用程序上实现它,请记住它需要root,除非您的应用程序在自助服务终端或您自己的设备上运行,否则它可能不是一个好主意,请不要在Android市场或公共场所发布的应用上实施此方法。

停止/删除/禁用系统栏(发出此命令前需要su):

$ service call activity 79 s16 com.android.systemui

要恢复系统栏,只需发出以下命令:

$ am startservice -n com.android.systemui/.SystemUIService

就这么简单。希望ICS很快就会发布源代码,这样任何人都可以为我们的Kiosk平板电脑构建Android。

答案 1 :(得分:11)

您无法在Android 3.0上隐藏系统栏。

答案 2 :(得分:7)

如果你有权访问系统文件,你可以这样做(我的解锁和root用户,所以我不确定你需要什么,我没有尝试过工厂新鲜的xoom):

adb shell
cd /system/app/
mv SystemUI.odex SystemUI.odexold
mv SystemUI.apk SystemUI.apkold
exit
adb reboot

该代码禁用了实际菜单栏的应用程序SystemUI。通过该修改,您还可以获得该系统栏的空间,但请确保您的应用程序中有退回按钮或其他内容。

编辑:

如果您遇到只读文件问题,那么您需要将/system目录挂载为读写。为此,请在adb shell中使用此命令(来源:http://forum.xda-developers.com/showthread.php?t=1159495&page=5

mount -o remount,rw /dev/block/stl6 /system

您可以使用该命令将其重新安装为只读:

mount -o remount,ro /dev/block/stl6 /system

编辑:

此方法允许软键盘在需要时正常显示。

答案 3 :(得分:1)

以下是我之前回答的相关代码。它会自动隐藏状态栏并在完成后再次显示。重要提示:要再次显示它,代码必须重新启动system_server,这需要一些时间再次启动,在此期间,您将看到蜂窝启动动画。这是我现在唯一再次显示状态栏的内容。没有重新启动SystemUI。因此,它将在重新启动system_server时关闭您的应用程序。

此代码需要一个安装了超级用户的root操作系统。

package com.projects;

import java.io.BufferedReader;
import java.io.ByteArrayOutputStream;
import java.io.DataOutputStream;
import java.io.InputStreamReader;
import java.io.PrintStream;

import android.app.Activity;
import android.app.AlertDialog;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TableLayout.LayoutParams;

// http://www.stealthcopter.com/blog/2010/01/android-requesting-root-access-in-your-app/
public class FullScreenTestActivity extends Activity implements Button.OnClickListener {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        try
        {
            Process p;
            p = Runtime.getRuntime().exec("su"); 

            // Attempt to write a file to a root-only
            DataOutputStream os = new DataOutputStream(p.getOutputStream());
            os.writeBytes("mount -o remount,rw /dev/block/stl6 /system\n");
            os.writeBytes("mv /system/app/SystemUI.odex /system/app/SystemUI_Old.odex\n");
            os.writeBytes("mv /system/app/SystemUI.apk /system/app/SystemUI_Old.apk\n");
            os.writeBytes("mount -o remount,ro /dev/block/stl6 /system\n");

            // Close the terminal
            os.writeBytes("exit\n");
            os.flush();
            p.waitFor();

            new AlertDialog.Builder(this)
                .setIconAttribute(android.R.attr.alertDialogIcon)
                .setMessage("Android Honeycomb StatusBar removed successfully!")
                .show();

            // Set action for exiting.
            Button cmdExit = new Button(this);
            cmdExit.setText("Exit");
            cmdExit.setOnClickListener(this);
            this.addContentView(cmdExit, new LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT));
        }
        catch (Exception e)
        {
            ShowErrorGlobal(e);
        }
    }

    public void onClick(View v) {
        try
        {
            Process p;
            p = Runtime.getRuntime().exec("su"); 

            // Attempt to write a file to a root-only
            DataOutputStream os = new DataOutputStream(p.getOutputStream());
            os.writeBytes("mount -o remount,rw /dev/block/stl6 /system\n");
            os.writeBytes("mv /system/app/SystemUI_Old.odex /system/app/SystemUI.odex\n");
            os.writeBytes("mv /system/app/SystemUI_Old.apk /system/app/SystemUI.apk\n");
            os.writeBytes("mount -o remount,ro /dev/block/stl6 /system\n");
            String systemServerPID = GetSystemServerPID();
            if (systemServerPID != null)
                os.writeBytes("kill " + systemServerPID + "\n");
            // else ... manual reboot is required if systemServerPID fail.

            // Close the terminal
            os.writeBytes("exit\n");
            os.flush();
            p.waitFor();
        }
        catch (Exception e)
        {
            ShowErrorGlobal(e);
        }
    }

    public String GetSystemServerPID()
    {
        try
        {
            Process p = Runtime.getRuntime().exec("ps -n system_server"); 
            p.waitFor();

            BufferedReader reader = new BufferedReader(new InputStreamReader(p.getInputStream()));
            reader.readLine(); // Skip header.
            return reader.readLine().substring(10, 16).trim();
        }
        catch (Exception e)
        {
            return null;
        }
    }

    protected void ShowErrorGlobal(Exception e)
    {
        ByteArrayOutputStream baos = new ByteArrayOutputStream();
        PrintStream stream = new PrintStream( baos );
        e.printStackTrace(stream);
        stream.flush();

        new AlertDialog.Builder(this)
            .setIconAttribute(android.R.attr.alertDialogIcon)
            .setTitle("Epic fail")
            .setMessage("Error: " + new String( baos.toByteArray() ))
            .show();
    }
}

答案 4 :(得分:0)

虽然这不能解决“锁定”屏幕的问题,但您可以使用setSystemUiVisibillity api(API级别11)隐藏状态栏而不是root。

一些伪代码:

public MyActivity extends Activity {
    @Override
    public void onCreate(Bundle savedInstance) {
        //...
        final View mainView = findViewById(R.id.you_main_view_id);
        mainView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LOW_PROFILE);

        //Register a listener for when the status bar is shown/hidden:
        final Context context = getApplicationContext();
        mainView.setOnSystemUiVisibilityChangeListener(new View.OnSystemUiVisibilityChangeListener () {
            @Override
            public void onSystemUiVisibilityChange(int visibility) {
                if ((visibility == View.SYSTEM_UI_FLAG_VISIBLE)) {
                    //Do stuff here...pause the video/game?
                } else {
                    //Do other stuff here..resume the video/game?
                }
            }
        });
    }
}

这将隐藏状态栏,直到用户点击屏幕的下边缘,在这种情况下,状态栏将显示(几秒后它将再次隐藏)。

确保您在清单中指定了targetSdkVersion =“11”或更高。

答案 5 :(得分:0)

应用程序HideBar可用于隐藏Android平板电脑(HC,ICS,JB)上的系统栏。它包含一个可选的自助服务终端模式,可用于完全锁定平板电脑以及其他选项,如隐藏的后退按钮。它是GPL软件。如果必须大量安装此应用程序,请联系开发人员(我,请参阅应用程序网站上的电子邮件)。

答案 6 :(得分:0)

对于遇到此问题的其他人:

如果您没有在AndroidManaifest.xml文件中正确设置android:targetSdkVersion,则setSystemUiVisibility无效(与其他高级API不同,无论targetSDKVersion是否设置正确,它都有效)。

我不小心将我的targetSdkVersion留在了8.将它最多撞到16,立即导致setSystemUIVisiblity产生了预期的效果。

答案 7 :(得分:0)

如果您在设备上拥有root访问权限,则可以

此代码可以通过杀死它的进程并再次调用它来隐藏和显示StatusBar。

package com.example.statusbar;

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.Window;
import android.view.WindowManager;
import android.widget.Button;

public class MainActivity extends Activity {

    String commandToExecute;

    @Override
    protected 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.activity_main);

        commandToExecute = "/system/xbin/su";
        executeShellCommand(commandToExecute);

        Button btHideStatusBar = (Button) findViewById(R.id.buttonHide);
        Button btShowStatusBar = (Button) findViewById(R.id.buttonShow);


        btHideStatusBar.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View v) {

                commandToExecute = "/system/xbin/su -c /system/bin/service call activity 42 s16 com.android.systemui";
                executeShellCommand(commandToExecute);

            }
        });

    btShowStatusBar.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View arg0) {

            commandToExecute = "/system/xbin/su -c /system/bin/am startservice -n com.android.systemui/.SystemUIService";
            executeShellCommand(commandToExecute);

        }
    });

    }

    private boolean executeShellCommand(String command) {
        try {

            Runtime.getRuntime().exec(command);

            return true;
        } catch (Exception e) {
            return false;

        }
    }


}

答案 8 :(得分:0)

从4.4开始,你可以做到这一点(这个问题非常陈旧,但总是出现在这个主题上):

setSystemUiVisibility(View.SYSTEM_UI_FLAG_IMMERSIVE)

https://developer.android.com/training/system-ui/immersive.html

答案 9 :(得分:-1)

如果你想在应用程序中隐藏导航栏,那么这是最简单的方法。 只需在清单文件

中的应用程序标记中编写此代码即可
> <Application
> android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen" <!--
> other parameters of application tag-->
> >

答案 10 :(得分:-1)

  

机器人:主题=&#34; @android:风格/ Theme.Black.NoTitleBar.Fullscreen

  

mainView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LOW_PROFILE)

不,任务栏仍然存在,有三个灰点代替经典图标