2013-10-17 63 views
0

我剛剛對方向有個基本問題。目前我的應用只支持縱向模式的手機。我只是改變它支持平板電腦,但我想知道如何使它適用於平板電腦的兩個方向,保持手機的方向爲肖像。這裏是我的清單中的代碼,將其設置爲縱向的一部分:爲手機設置縱向,但是縱向和橫向都適用於平板電腦

<activity 
      android:name=".activities.SplashActivity" 
      android:clearTaskOnLaunch="true" 
      android:label="@string/app_name" 
      android:launchMode="singleTop" 
      android:noHistory="true" 
      android:screenOrientation="portrait" 
      android:theme="@style/AppBaseTheme.NoActionBar" > 
      <intent-filter> 
       <action android:name="android.intent.action.MAIN" /> 
       <category android:name="android.intent.category.LAUNCHER" /> 
      </intent-filter> 
      <intent-filter> 
       <action android:name="android.intent.action.VIEW" /> 

       <category android:name="android.intent.category.DEFAULT" /> 
       <category android:name="android.intent.category.BROWSABLE" /> 

       <data android:scheme="https" android:path="/msf1.0/public/mobilebootstrapper.aspx"/> 
      </intent-filter> 
     </activity> 
     <activity 
      android:name=".activities.MainActivity" 
      android:configChanges="orientation|keyboardHidden|screenSize" 
      android:launchMode="singleTask" 
      android:screenOrientation="portrait" 
      android:windowSoftInputMode="stateUnchanged|adjustResize" > 
     </activity> 

回答

4

你可以叫setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT); INE您活動的onCreate方法,如果該設備是手機。要確定設備是手機還是平板電腦,您可以查看this question

+0

所以我基本上設置setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_NOSENSOR);平板電腦? –

+1

如果您希望設備根據方向傳感器識別方向,則需要將其設置爲ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR。所有常量在這裏解釋:http://developer.android.com/reference/android/R.attr.html#screenOrientation – 2Dee

+0

我如何處理在清單中定義的screenorientation作爲肖像? –