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?
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?
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>