After intial Eclipse Luna setup when I try to run the intial Hello World app in the Android Wear emulator, its getting stopped showing "You cannot combine swipe dismissal and the action bar" error in logcat.Please help me to solve this issue.
I had the same problem yesterday. I solved it by running the application in full screen mode, I do not think this is the best solution, but it worked, although this does not have the action bar.
In you onCreate method add this before the setContentView.
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
Make sure you're not using a theme that includes an action bar. Consider using
android:theme="@android:style/Theme.DeviceDefault"
You need to use Theme.DeviceDefault as your android:theme
Here the full steps on how to do it using eclipse. https://medium.com/@tangtungai/how-to-develop-and-package-android-wear-app-using-eclipse-ef1b34126a5d
来源:https://stackoverflow.com/questions/24567836/unable-to-execute-initial-android-wear-hello-world-app-in-eclipse