aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRGIB <gibellini.roberto@gmail.com>2015-11-10 21:13:14 +0100
committerRGIB <gibellini.roberto@gmail.com>2015-11-10 21:18:34 +0100
commit2f07e79369c79eaed03cdc52245c3e71fc49464d (patch)
tree7847629a5c5d7ecd5d214d6a8f667a62ed425805
parentba7ba656effe1eeca295965ef3d61eabcf6700aa (diff)
downloaddevice_samsung_n5100-2f07e79369c79eaed03cdc52245c3e71fc49464d.zip
device_samsung_n5100-2f07e79369c79eaed03cdc52245c3e71fc49464d.tar.gz
device_samsung_n5100-2f07e79369c79eaed03cdc52245c3e71fc49464d.tar.bz2
n5100 : configure home button actions
double tap , long press -> view recent apps Change-Id: I937a34eb6774608632fb248498d5c7544b7f3f30
-rwxr-xr-xoverlay/frameworks/base/core/res/res/values/config.xml24
1 files changed, 24 insertions, 0 deletions
diff --git a/overlay/frameworks/base/core/res/res/values/config.xml b/overlay/frameworks/base/core/res/res/values/config.xml
index ed01cb4..599c197 100755
--- a/overlay/frameworks/base/core/res/res/values/config.xml
+++ b/overlay/frameworks/base/core/res/res/values/config.xml
@@ -58,4 +58,28 @@
<!-- Boolean to enable stk functionality on Samsung phones -->
<!-- <bool name="config_samsung_stk">true</bool> -->
+
+ <!-- Control the behavior when the user long presses the home button.
+ 0 - Nothing
+ 1 - Menu key
+ 2 - Recent apps view in SystemUI
+ 3 - Launch assist intent
+ 4 - Voice Search
+ 5 - In-app Search
+ This needs to match the constants in
+ policy/src/com/android/internal/policy/impl/PhoneWindowManager.java
+ -->
+ <integer name="config_longPressOnHomeBehavior">2</integer>
+
+ <!-- Control the behavior when the user double-taps the home button.
+ 0 - Nothing
+ 1 - Menu
+ 2 - Recent apps view in SystemUI
+ 3 - Launch assist intent
+ 4 - Voice Search
+ 5 - In-app Search
+ This needs to match the constants in
+ policy/src/com/android/internal/policy/impl/PhoneWindowManager.java
+ -->
+ <integer name="config_doubleTapOnHomeBehavior">2</integer>
</resources>