LoginSignup
14
16

More than 5 years have passed since last update.

【Android】画面回転した場合にActivityを再生成されないようにする

Posted at

AndroidManifest.xmlのActivityにconfigChangesの設定をすると、画面回転時onCreate()の代わりにonConfigChanged()が呼ばれ、Activityの再生成を回避できる。

<activity android:name="com.test.HogeActivity"
          android:configChanges="orientation|screenSize" >
14
16
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
14
16