I'm developing an app that uses
android.hardware.Camera.parameters.getSupportedPictureSizes()
This is only available from SDK version 8 and I would like to be compatible with SDK 4, so I've done this:
if(Build.VERSION.SDK_INT >=8){...}
But on the emulator, it seams that it tries to check the reference to this function, and it fails:
02-02 11:20:10.930: ERROR/dalvikvm(1841): Could not find method android.hardware.Camera$Parameters.getSupportedPictureSizes, referenced from method com.test.demo.CameraCustom.takeAPicture
Any idea about how to solve this backward compatibility issue?
I've tried to use inkocation with this piece of code inside surfaceChanged. Obviously, the code works directly without invokation:
try{
windowmanager_defaultdisplay_Rotation = getWindowManager().getDefaultDisplay().getClass().getMethod("getRotation");
Log.v(MainMenu.TAG, "getRotation exist");
}catch(Exception e){
Log.v(MainMenu.TAG, "getRotation dont exist");
}
try{
windowmanager_defaultdisplay_Rotation.invoke(null, null);
Log.v(MainMenu.TAG, "getRotation invoking ok, rotation ");
}catch(Exception e){
Log.v(MainMenu.TAG, "exception invoking getRotation "+e.toString());
}
I get "getRotation exist" but then "exception invoking getRotation java.lang.NullPointerException.
Any idea?