我想问为什么我的android模拟器总是在横向上显示,即使我在我的代码上有 android:orientation =“horizontal”这里是我的截图
当我使用 ctrl + f11 将其更改为纵向模式时,它仍处于横向模式。
`
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="19" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".Splash"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".Menu"
android:label="@string/app_name" >
<intent-filter>
<action android:name="com.project.billmoko.MENU" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name=".Calculation"
android:label="@string/app_name" >
<intent-filter>
<action android:name="com.project.billmoko.CALCULATION" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name=".Instruction"
android:label="@string/app_name" >
<intent-filter>
<action android:name="com.project.billmoko.INSTRUCTION" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name=".Tips"
android:label="@string/app_name" >
<intent-filter>
<action android:name="com.project.billmoko.TIPS" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name=".BillingCenter"
android:label="@string/app_name" >
<intent-filter>
<action android:name="com.project.billmoko.BILLINGCENTER" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name=".AboutUs"
android:label="@string/app_name" >
<intent-filter>
<action android:name="com.project.billmoko.ABOUTUS" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
</manifest>`
XML文件
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/background2"
android:screenOrientation="portrait" >
答案 0 :(得分:0)
请尝试更换&#34;水平&#34;用&#34;肖像&#34;。如果这不起作用,请发布您的清单,或至少发布它的活动部分。请注意,这是特定于活动的属性,而不是应用程序。如果您希望所有活动都具有一个特定方向,则需要在清单中的每个活动中设置此属性。
祝你好运!答案 1 :(得分:0)
您是否已将Google API与模拟器一起使用,您可以尝试将Google API更改为普通的Android API。愿这两个answers帮助你