bluetooth keyboard will cause activity destroy and recreate

前端 未结 2 1841
庸人自扰
庸人自扰 2021-01-04 10:09

Bluetooth keyboard will cause activity destroy and recreate if I turn off it or far away from pad(Android) Activity will be recreate how can i avoid this problem

2条回答
  •  离开以前
    2021-01-04 10:56

    Pairing a Bluetooth keyboard is considered to be a configuration change: Try adding the below to your AndroidManifest.xml

    android:configChanges="keyboard|keyboardHidden"

    From: http://developer.android.com/guide/topics/manifest/activity-element.html#config android:configChanges

提交回复
热议问题