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.
我创建了一个播放媒体文件的应用程序,它工作正常。但是当我转动手机时,我改变了视角,我的应用程序停止了。
当您更改方向时,Android 将重新创建 Activity。因此,您需要通过覆盖 Activity 的 onConfigurationChanged 方法来专门处理方向更改。
@Override public void onConfigurationChanged(Configuration newConfig) { // your code here. }