转自 http://forum.xda-developers.com/showthread.php?p=16850588#post16850588
TabletBar Hider
Want to use your honeycomb tablet in *true* fullscreen, without that pesky system bar in the way? Now you can! (REQUIRES ROOT!)
This app allows you to hide the system bar in landscape mode, where it gets in the way the most. Then, if you need to access it to leave the app, just rotate your tablet to portrait and the bar appears. When you're done, rotate it back to landscape and the bar disappears again. You can go back to the app and end that behavior at any time.
There is currently an issue with apps that prevent rotation - you may get stuck in them! But worst case, you can always reboot and everything goes back to normal. I will work on a fix for that if people like the app!
I am new to Android app development so please let me know if there are any issues! I have created a free demo version that you can run to verify that the app will properly hide and restore the system bar on your tablet. I have tested this on a Samsung Galaxy Tab 10.1 but not others yet! So please make sure to try the demo first.
Note that the demo is only for verifying that the app can kill and restore the system bar. It does not feature the automatic rotation service that the full version contains.
Screenshots of full version attached to post
Demo
https://market.android.com/details?i...etbarhiderdemo
Full Version
https://market.android.com/details?i...tabletbarhider
分享到:
相关推荐
在Android应用开发中,用户界面的设计与交互是至关重要的,其中标题栏的显示与隐藏是常见的一种交互方式。本文将详细讲解如何实现标题栏在上滑时隐藏,下滑时显示,同时带有平滑的动画效果,确保在操作过程中无卡顿...
Android 3.0,代号"Honeycomb",是针对平板电脑优化的一个重大更新,带来了许多新特性,旨在提升用户体验和开发者效率。...这些新特性使得Android 3.0成为了一个专为大屏幕设计、功能全面的操作系统。
android3.0新增UI控件示例说明android3.0新增UI控件示例说明
在Android开发中,ActionBar是一个非常重要的组件,尤其在Android 3.0及以上版本中,它...开发者可以根据需求灵活配置,以实现符合应用风格的自定义标题栏。通过理解和熟练运用ActionBar,可以显著提升应用的用户体验。
xamarin android 使用一行代码完美隐藏标题栏和输入法
在Android系统中,动画是提升用户体验的关键因素,尤其是在Android 3.0及以上版本,系统引入了更强大的动画机制,使得开发者能够创建出更加流畅、细腻的用户交互。本篇文章将深入探讨Android 3.0及以后版本中的动画...
Android 操作系统中,状态栏和标题栏是默认情况下显示的,但是有时候,我们需要隐藏它们以实现全屏效果。隐藏状态栏和标题栏可以通过两种方式来实现:使用预定义样式和编程方式。 使用预定义样式隐藏标题栏和状态栏...
1. **UI重构**:Android 3.0针对大屏幕设备进行了大幅度的UI调整,引入了全新的任务切换器和通知栏设计。源代码会展示这些组件的实现细节,帮助开发者理解如何创建适应不同屏幕尺寸的应用。 2. **硬件加速**:...
通知栏在Android 3.0中进行了优化,提供了更多的互动选项,用户可以直接从通知栏进行操作,无需打开相应应用。 9. **WebView增强** 在这个版本中,WebView组件得到了升级,支持WebGL和硬件加速,使得在Android...
本教程将详细介绍如何利用`Android-support-v7`库来在Android 3.0(API Level 11)及以下版本的系统中使用`ActionBarActivity`,帮助你的应用实现对`ActionBar`的支持。 `ActionBar`是Android 3.0(API Level 11)...
Android Studio 3.0中的输入卡顿主要是由于IDE与系统输入法之间的兼容性问题导致的。当用户在编辑器中输入代码时,如果切换到输入法,可能会遇到输入延迟或者文字提示不显示的情况。这是因为IDE的内部Java运行环境...
Android Studio3.0下载Android Studio3.0下载Android Studio3.0下载
《Android 3.0内存管理机制分析》这篇文章深入探讨了Android 3.0操作系统中的内存管理机制,该机制是基于Linux 2.6内核进行优化的。文章着重阐述了在这一版本中内存管理的新技术和改进策略。 Android操作系统由系统...
安卓窗口隐藏标题栏和状态栏,在Android Activity去除标题栏和状态栏.1、关键代码 android:theme="@android:style/Theme.NoTitleBar" // 隐藏标题栏 android:theme="@android:style/Theme.NoTitleBar.Fullscreen" // ...
这份"android_3.0_javasrc"压缩包包含的是Android 3.0版本的Java源代码,对于开发者来说,它是一个宝贵的资源库,可以帮助我们更好地理解系统的运行机制,解决调试过程中的问题,特别是当Eclipse在调试时出现...
在Android4.2.2中,导航栏(也就是屏幕底部的三个按钮,home,back,recentapp)是系统应用SystemUi.apk的一部分,简言之,我们的需求就是让我们的app来控制SystemUi.apk,达到动态显示隐藏屏幕底部导航栏的效果。...
这是Android开发所需的sdk,Windows的,下载并解压后,将解压出的整个文件夹复制或者移动到your sdk 路径/platforms文件夹,然后打开SDK Manager,打开 Tools(工具)菜单选择Options(选项)菜单项打开 Android SDK ...
在Android开发中,有时为了获得更沉浸式的用户体验或者简洁的界面设计,开发者会选择隐藏应用的状态栏和标题栏。本篇文章将详细讲解如何在Android中实现这一功能。 首先,隐藏标题栏(ActionBar)是通过设置应用...