Disable hardware acceleration, backward compatibility
问题 I have a problem with a function ( setLayerType(LAYER_TYPE_NONE, null) ) available in api >=11, and my code should run on android 1.6 (API level 4) too. I have tried to use reflection like this: try { Method method = View.class.getMethod("setLayerType", Integer.TYPE, null); method.invoke(LAYER_TYPE_NONE, null); view.setLayerType(LAYER_TYPE_NONE, null); } catch (Throwable e) { Log.e("_________________test", "Function not found"); } but my app crash at view.setLayerType with java.lang