summaryrefslogtreecommitdiff
path: root/android/src/org/rockbox/RockboxActivity.java
diff options
context:
space:
mode:
Diffstat (limited to 'android/src/org/rockbox/RockboxActivity.java')
-rw-r--r--android/src/org/rockbox/RockboxActivity.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/android/src/org/rockbox/RockboxActivity.java b/android/src/org/rockbox/RockboxActivity.java
index 62c53fc733..372d866849 100644
--- a/android/src/org/rockbox/RockboxActivity.java
+++ b/android/src/org/rockbox/RockboxActivity.java
@@ -40,6 +40,8 @@ public class RockboxActivity extends Activity
{
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
+ getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
+ WindowManager.LayoutParams.FLAG_FULLSCREEN);
Intent intent = new Intent(this, RockboxService.class);
intent.setAction(Intent.ACTION_MAIN);
intent.putExtra("callback", new ResultReceiver(new Handler(getMainLooper())) {