• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps Webview: Fatal Signal 4 SIGILL

moddorf

Lurker
Oct 18, 2012
3
0
Hey,

I have a problem with a webview app. It works nice on emulators, but there is a problem on my real device (galaxy S2, 4.0.3). I am not able to click on a link, there is no redirection to the link. Scrolling works nice. This is my code:

Code:
public class MainActivity extends Activity {
	     @Override 
	     public void onCreate(Bundle icicle) { 
	          super.onCreate(icicle); 
	          setContentView(R.layout.activity_main); 
	          	
	        final WebView wvc = (WebView)findViewById(R.id.webview1); 
	        wvc.getSettings().setJavaScriptEnabled(true);
	        
	        wvc.setWebViewClient(new WebViewClient() { 
	          @Override 
	          public void onPageFinished(WebView view, String url) 
	          { 

	        	  	findViewById(R.id.imageView1).setVisibility(View.GONE); 
	                  wvc.setVisibility(View.VISIBLE);
	          } 
	          
	      }); 
	        wvc.loadUrl("meinewebsite"); 
	     }

	}

Would be nice if you can help me with that. Of course I used a real url on loadUrl, but I am not able to post links because I am a new registred user.

These are the error messages I get:

10-18 16:17:13.473: A/libc(8303): Fatal signal 4 (SIGILL) at 0x4f9e2e14 (code=1)
10-18 16:17:13.453: V/webview(8303): singleCursorHandlerTouchEvent -getEditableSupport FASLE
 

BEST TECH IN 2023

We've been tracking upcoming products and ranking the best tech since 2007. Thanks for trusting our opinion: we get rewarded through affiliate links that earn us a commission and we invite you to learn more about us.

Smartphones