我正在使用默认的 android 电话应用程序。当我拨打某个号码或在平板电脑模式下拨打电话时,屏幕会垂直旋转。所以我想删除垂直屏幕旋转。有人知道请帮助我..提前谢谢..请回答这个问题..
问问题
511 次
1 回答
0
我得到了答案。在电话应用程序的 manifest.xml 中,我将方向更改为横向。之前它是纵向的。
<activity android:name="InCallScreen"
android:theme="@style/Theme.InCallScreen"
android:label="@string/phoneIconLabel"
android:excludeFromRecents="true"
android:launchMode="singleInstance"
android:screenOrientation="landscape"
android:configChanges="orientation|screenSize|keyboardHidden|uiMode"
android:exported="false">
</activity>
于 2012-12-24T07:51:09.690 回答