所以,这是一个有趣的案例。我的SearchView
中有一个Toolbar
。我在SearchView
应用程序中单击的那一刻会自动重新启动。当我使用特定型号时会发生这种情况:华为P9 Lite。我在模拟器上尝试的任何其他设备 - 按预期工作。我试图在onConfigurationChange()
中记录消息,但没有显示任何内容,因此背后的原因未知。
我的活动清单如下:
<activity android:name=".Activity"
android:configChanges="orientation|screenSize|keyboardHidden|smallestScreenSize"
android:windowSoftInputMode="adjustResize"
android:label=""
android:parentActivityName=".Activity" />
是什么导致这种情况?