Tag: screen orientation

我想让我的应用程序只在Android横向

我想使我的应用程序只在横向模式下工作,但不能使其工作。 我给了screenOrientation = "landscape"即使第一页将处于横向模式,其他活动将是纵向。 XML文件 <application android:icon="@drawable/icon" android:label="@string/app_name"> <activity android:name=".Main" android:label="@string/app_name" android:screenOrientation="landscape" android:theme="@android:style/Theme.NoTitleBar.Fullscreen"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name=".IntroHome" android:label="@string/app_name" android:screenOrientation="landscape"> </activity> <activity android:name=".ObjectivesPage" android:label="@string/app_name" android:screenOrientation="landscape" > </activity> <activity android:name=".MenuPage" android:label="@string/app_name" android:screenOrientation="landscape" > </activity> </application> JAVA类 public class ObjectivesPage extends Activity{ ImageButton imgButton; public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.objectivespage); […]