You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fatal Exception: java.lang.UnsupportedOperationException
at android.view.GLES20Canvas.clipPath(GLES20Canvas.java:429)
at com.larswerkman.lobsterpicker.LobsterPicker.onDraw(Unknown Source) Sony ST23I Android 4.0.4
Fatal Exception: java.lang.UnsupportedOperationException
at android.view.GLES20Canvas.clipPath(GLES20Canvas.java:429)
at com.larswerkman.lobsterpicker.LobsterPicker.onDraw(Unknown Source)
Sony ST23I Android 4.0.4
found:
http://stackoverflow.com/questions/13850259/is-there-a-way-to-disable-hardware-acceleration-only-for-android-4-0-3/22643710#22643710
and
http://stackoverflow.com/questions/8895677/work-around-canvas-clippath-that-is-not-supported-in-android-any-more/8895894#8895894
fix
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN) {
picker.setLayerType(View.LAYER_TYPE_SOFTWARE, null);
}
The text was updated successfully, but these errors were encountered: