Skip to content Skip to sidebar Skip to footer

Unimplemented Webview Method Run Called From: Android.os.handler.handlecallback(handler.java:733)

I am new to Android app development. I try to connect facebook using socialauth. I implemented everything as given. When I execute my app, at background it gets green access to fac

Solution 1:

W/OpenGLRenderer(1361): Bitmap too large to be uploaded into a texture (2560x1600, max=2048x2048)<br/> ^^^^^^^^^Out Of the range

You can't go beyond the limitations of bitmap as rendering is done by OpenGL.You may want your image to be scaled down to be fitted in to the bitmap range and limit of OpenGL hardware textures (2048x2048) as suggested in the error as well.

So better to pindown the scale of your bitmap by some calculations for size.You can use Bitmap createScaledBitmap (Bitmap src, int dstWidth, int dstHeight, boolean filter) to create scaled bitmap from your available resource.


Sorry but Unimplemented WebView problem is unresolved for me as well but I have found reported Issue regarding this on Code Google which might help you.

Post a Comment for "Unimplemented Webview Method Run Called From: Android.os.handler.handlecallback(handler.java:733)"