答案 0 :(得分:12)
答案 1 :(得分:4)
答案 2 :(得分:3)
我找到了解决方案:
manifest.xml中的:
<application android:icon="@drawable/icon" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar" android:name="MyApplication">
MyApplication.java中的:
public class UPackingListApplication extends Application {
public void onConfigurationChanged(Configuration newConfig) {
newConfig.orientation = [orientation we wanna to use (according to ActivityInfo class)];
super.onConfigurationChanged(newConfig);
}
}