Studio Android 3.6.
Tôi muốn ứng dụng của tôi luôn ở portrait
chế độ. Vì vậy, trong tôi AndroidMainfest.xml
:
<activity
android:name=".activity.SplashActivity"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
Tôi chạy ứng dụng và SplashActivity
hiển thị trong portrait
chế độ. Đẹp. Nhưng trình soạn thảo hiển thị lỗi sau:
Expecting android:screenOrientation="unspecified"
Tại sao?