Trevor Johns | 89d2da0 | 2015-08-13 18:28:15 -0700 | [diff] [blame] | 1 | |
Trevor Johns | e904b62 | 2014-08-27 18:30:35 -0700 | [diff] [blame] | 2 | Android BasicImmersiveMode Sample |
Jan-Felix Schmakeit | 4f99718 | 2014-12-16 15:08:37 +1100 | [diff] [blame] | 3 | =================================== |
Trevor Johns | e904b62 | 2014-08-27 18:30:35 -0700 | [diff] [blame] | 4 | |
Jan-Felix Schmakeit | 4f99718 | 2014-12-16 15:08:37 +1100 | [diff] [blame] | 5 | Sample demonstrating the use of immersive mode to hide the system and navigation bars for |
| 6 | full screen applications. |
| 7 | |
| 8 | Introduction |
| 9 | ------------ |
| 10 | |
| 11 | 'Immersive Mode' is a new UI mode which improves 'hide full screen' and 'hide nav bar' |
| 12 | modes, by letting users swipe the bars in and out. |
| 13 | |
| 14 | This sample demonstrates how to enable and disable immersive mode programmatically. |
| 15 | |
| 16 | Immersive mode was introduced in Android 4.4 (Api Level 19). It is toggled using the |
| 17 | SYSTEM_UI_FLAG_IMMERSIVE system ui flag. When combined with the SYSTEM_UI_FLAG_HIDE_NAVIGATION and SYSTEM_UI_FLAG_FULLSCREEN flags, hides the navigation and status bars and lets your app capture all touch events on the screen. |
Trevor Johns | e904b62 | 2014-08-27 18:30:35 -0700 | [diff] [blame] | 18 | |
| 19 | Pre-requisites |
| 20 | -------------- |
| 21 | |
Trevor Johns | fc1c2ea | 2016-08-11 15:43:37 -0700 | [diff] [blame] | 22 | - Android SDK 24 |
| 23 | - Android Build Tools v24.0.1 |
Trevor Johns | e904b62 | 2014-08-27 18:30:35 -0700 | [diff] [blame] | 24 | - Android Support Repository |
| 25 | |
Jan-Felix Schmakeit | 4f99718 | 2014-12-16 15:08:37 +1100 | [diff] [blame] | 26 | Screenshots |
| 27 | ------------- |
| 28 | |
| 29 | <img src="screenshots/1-activity.png" height="400" alt="Screenshot"/> <img src="screenshots/2-immersive.png" height="400" alt="Screenshot"/> |
| 30 | |
Trevor Johns | e904b62 | 2014-08-27 18:30:35 -0700 | [diff] [blame] | 31 | Getting Started |
| 32 | --------------- |
| 33 | |
| 34 | This sample uses the Gradle build system. To build this project, use the |
| 35 | "gradlew build" command or use "Import Project" in Android Studio. |
| 36 | |
| 37 | Support |
| 38 | ------- |
| 39 | |
| 40 | - Google+ Community: https://plus.google.com/communities/105153134372062985968 |
| 41 | - Stack Overflow: http://stackoverflow.com/questions/tagged/android |
| 42 | |
| 43 | If you've found an error in this sample, please file an issue: |
| 44 | https://github.com/googlesamples/android-BasicImmersiveMode |
| 45 | |
| 46 | Patches are encouraged, and may be submitted by forking this project and |
| 47 | submitting a pull request through GitHub. Please see CONTRIBUTING.md for more details. |
| 48 | |
| 49 | License |
| 50 | ------- |
| 51 | |
Trevor Johns | fc1c2ea | 2016-08-11 15:43:37 -0700 | [diff] [blame] | 52 | Copyright 2016 The Android Open Source Project, Inc. |
Trevor Johns | e904b62 | 2014-08-27 18:30:35 -0700 | [diff] [blame] | 53 | |
| 54 | Licensed to the Apache Software Foundation (ASF) under one or more contributor |
| 55 | license agreements. See the NOTICE file distributed with this work for |
| 56 | additional information regarding copyright ownership. The ASF licenses this |
| 57 | file to you under the Apache License, Version 2.0 (the "License"); you may not |
| 58 | use this file except in compliance with the License. You may obtain a copy of |
| 59 | the License at |
| 60 | |
Jan-Felix Schmakeit | 4f99718 | 2014-12-16 15:08:37 +1100 | [diff] [blame] | 61 | http://www.apache.org/licenses/LICENSE-2.0 |
Trevor Johns | e904b62 | 2014-08-27 18:30:35 -0700 | [diff] [blame] | 62 | |
| 63 | Unless required by applicable law or agreed to in writing, software |
| 64 | distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 65 | WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 66 | License for the specific language governing permissions and limitations under |
| 67 | the License. |