Deactivate slide right close app on Android Wear

1

I'm doing tests on Android Wear, some apps disable the "slide-right" gesture to close the app, making it only be possible to close with a long press or a physical button.

How to disable the slide gesture of closing app on Android Wear?

    
asked by Webserveis 20.11.2016 в 19:56
source

1 answer

1

Define the theme defined to your Activity with the property android:windowSwipeToDismiss with value false:

<style name="AppTheme" parent="@android:style/Theme.DeviceDefault.Light">
    <item name="android:windowSwipeToDismiss">false</item>
</style>
    
answered by 20.11.2016 / 20:15
source