是否可以在同一个应用程序中使用这两种方法?
Use for :rotation with backhome(onDestroy)
public void onDestroy(){
super.onDestroy();
webview.destroy();
finish();
System.gc();
//webview = null;
}
和
setRequestedOrientation (ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR); //in java file
or
android:screenOrientation="fullSensor"//manifest
单击手机撤消按钮时,我想旋转兼容并退出应用程序。我的应用程序也使用javascript。