When i long press text in the Webview (android), the app crashes. I also can\'t select text, because it crashes before the text is highlighted. Normally, the app would show the
After analyzing the code, I found that the problem was in the beginning of the Java file. It started with
package com.edireito.dgpro.dgpro; import... public class MyActivity extends ActionBarActivity {
And when I changed "ActionBarActivity" to "Activity", it worked!
Thanks.