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 の onConfigurationChanged メソッドをオーバーライドして、向きの変更を具体的に処理する必要があります。
@Override public void onConfigurationChanged(Configuration newConfig) { // your code here. }