Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个扩展 AlertActivity 的活动。我正在尝试播放音频文件。当方向改变音频停止。即使方向改变,我也想继续播放音频。当方向改变时,如何防止调用 onPause 和 onStop?请帮忙
转到清单并将其添加到您的活动 android:configChanges="orientation|screenSize|keyboardHidden"
试试这个代码:添加清单文件
<activity android:name=".Activity_name" android:configChanges="orientation|keyboardHidden|screenSize"
你没有提到你在使用片段。这段代码可以帮助你
android:configChanges="orientation|keyboardHidden|screenSize"
也看到这个链接
方向改变