有没有办法阻止这种情况?我尝试了以下方法:
//Adding this to the Manifest for the activity:
android:configChanges="orientation"
和
//Adding this to the MainActivity
@Override
public void onConfigurationChanged(Configuration newConfig){
super.onConfigurationChanged(newConfig);
}
它不起作用,但有什么想法吗?