是否可以同时执行onDestroy和fullSensor

时间:2012-11-20 06:34:56

标签: java android xml android-manifest

是否可以在同一个应用程序中使用这两种方法?

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。

0 个答案:

没有答案