all__
Админ
Сообщений: 874
Зарегистрирован: 01.2010
|
Ориентация экрана AndroidManifest.xml - решено
Чтобы зафиксировать ориентацию экрана на андроиде, находим файл:
Код:
/bin/AndroidManifest.xml
В свойствах activity добавляем строку:
Код:
android:screenOrientation="portrait"
или
Код:
android:screenOrientation="landscape"
Для портретной или альбомной ориентации соответственно.
После всех изменений файл AndroidManifest.xml будет выглядеть так:
Цитата:<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.game"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme"
android:keepScreenOn="true">
<activity
android:name="com.example.game.MainActivity"
android:label="@string/app_name"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
Лучшая благодарность - "Мне нравится", +1 или Like! Вверху страницы.
|
|
14.01.2013 16:27 |
|