每個Activity都要加  下面有2個  2個都加
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.extreme"
      android:versionCode="1"
      android:versionName="1.0"
      >
    <uses-sdk android:minSdkVersion="8" />


    <application android:icon="@drawable/apk_icon" 
    android:screenOrientation="landscape"
    android:label="@string/app_name">
        <activity android:name=".welcome"
        android:screenOrientation="landscape"
                  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="chooseName"
        android:screenOrientation="landscape"
        ></activity>


    </application>
</manifest>


arrow
arrow
    文章標籤
    橫屏
    全站熱搜

    cookiesp 發表在 痞客邦 留言(0) 人氣()