我正在为希望使用平板电脑作为互动广告和游戏展示的客户开发应用。平板电脑将被放置在支架中,以避免使用任何物理按钮。
我正在尝试让应用程序全屏运行,从顶部滑动后,我希望应用程序保持全屏。但是暂时会出现状态栏,按钮也会出现。
我的活动代码:
public class OrderActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_order);
hideSystemUi();
getWindow().getDecorView().setOnSystemUiVisibilityChangeListener(
new OnSystemUiVisibilityChangeListener() {
@Override
public void onSystemUiVisibilityChange(int visibility) {
if (visibility == 0) {
hideSystemUi();
}
}
});
}
private void hideSystemUi() {
getWindow().getDecorView().setSystemUiVisibility(
View.SYSTEM_UI_FLAG_LAYOUT_STABLE
| View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION
| View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
| View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
| View.SYSTEM_UI_FLAG_FULLSCREEN
| View.SYSTEM_UI_FLAG_IMMERSIVE);
}
}
PD:我知道这种行为在市场上的应用程序中是不受欢迎的,但在这种特定情况下,它是必需的和“正确的”。
答案 0 :(得分:3)
通过在终端shell中运行以下命令,您可以摆脱底部的按钮(假设设备已植根):
setprop qemu.hw.mainkeys 1
killall surfaceflinger
您可以在Android中以编程方式运行此命令:
try {
Process process = Runtime.getRuntime().exec("getprop qemu.hw.mainkeys");
BufferedReader prop = new BufferedReader(new InputStreamReader(process.getInputStream()));
if (prop == null || !prop.trim().equals("1")) {
Runtime.getRuntime().exec("setprop qemu.hw.mainkeys 1");
Runtime.getRuntime().exec("killall surfaceflinger");
}
} catch (Exception e) {
e.printStackTrace();
}
这个SO answer谈到在build.prop中做这件事,但我无法让它为我工作。另外,以编程方式执行此操作,我可以在用户退出应用程序时将其重新打开。
已更新通知栏
对于顶部的通知栏,我能做的最好的事情就是阻止它扩展。它仍然会弹出,但用户无法使用它。
这实际上是我在此处找到的另一个答案的轻微变化:link。
public static class customViewGroup extends ViewGroup {
public customViewGroup(Context context) {
super(context);
}
@Override
protected void onLayout(boolean changed, int l, int t, int r, int b) {
}
@Override
public boolean onInterceptTouchEvent(MotionEvent ev) {
Log.v("customViewGroup", "********** Intercepted");
return true;
}
}
// https://stackoverflow.com/questions/25284233/prevent-status-bar-for-appearing-android-modified
public static void interceptNotificationBarSwipe(Context c) {
WindowManager manager = ((WindowManager) c.getApplicationContext().getSystemService(Context.WINDOW_SERVICE));
WindowManager.LayoutParams localLayoutParams = new WindowManager.LayoutParams();
localLayoutParams.type = WindowManager.LayoutParams.TYPE_SYSTEM_ERROR;
localLayoutParams.gravity = Gravity.TOP;
localLayoutParams.flags = WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE |
// this is to enable the notification to recieve touch events
WindowManager.LayoutParams.FLAG_NOT_TOUCH_MODAL |
// Draws over status bar
WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN;
localLayoutParams.width = WindowManager.LayoutParams.MATCH_PARENT;
localLayoutParams.height = (int) (50 * c.getResources().getDisplayMetrics().scaledDensity);
localLayoutParams.format = PixelFormat.TRANSPARENT;
customViewGroup view = new customViewGroup(c);
manager.addView(view, localLayoutParams);
}
您也必须将此添加到您的AndroidManifest.xml中:
<uses-permission android:name="android.permission.ACCESS_SUPERUSER" />
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
我只在Jelly Bean 4.2(API 17)及更高版本中使用过它。在此之前不确定它是否有效。
希望有所帮助。
正如其他回复中所述,这在L中变得更容易,也可以使用自定义ROM完成。我的目标是在KitKat中运行的程序化解决方案
答案 1 :(得分:2)
您可以在样式xml文件中自定义主题:
style name="fullscreen_theme" parent="Theme.AppCompat.Light">
<item name="android:windowFullscreen">true</item>
</style>
答案 2 :(得分:1)
在应用程序标记内的android清单中,添加以下行:
android:theme="@android:style/Theme.Light.NoTitleBar.Fullscreen"