当前位置: 代码迷 >> Android >> jquery mobile +html5+phoneGap 横竖屏有关问题
  详细解决方案

jquery mobile +html5+phoneGap 横竖屏有关问题

热度:293   发布时间:2016-04-28 00:43:23.0
jquery mobile +html5+phoneGap 横竖屏问题
我用jquery mobile +html5+phoneGap 开发了一个手机端应用,在android手机端不能横屏,一横屏就死机,有没有大仙做过类似的手机端 ,给出出你们的想法和见解,不甚感激!
------解决思路----------------------
在你的html代码里是否有:
<meta name="viewport" content="width=device-width, initial-scale=1.0">。
在你的AndroidManifest.xml文件里是否有:
<supports-screens
        android:largeScreens="true"
        android:normalScreens="true"
        android:smallScreens="true"
        android:xlargeScreens="true"
        android:resizeable="true"
        android:anyDensity="true"
        />

或android:configChanges="orientation
------解决思路----------------------
keyboardHidden
------解决思路----------------------
keyboard
------解决思路----------------------
screenSize
------解决思路----------------------
locale"。
------解决思路----------------------
修改AndroidManifest.xml,给activity增加配置属性
android:configChanges="orientation
------解决思路----------------------
keyboardHidden
------解决思路----------------------
keyboard
------解决思路----------------------
screenSize
------解决思路----------------------
locale"
例如:
<activity
            android:name="com.example.news.MainActivity"
            android:label="@string/app_name" android:configChanges="orientation
------解决思路----------------------
keyboardHidden
------解决思路----------------------
keyboard
------解决思路----------------------
screenSize
------解决思路----------------------
locale">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
  相关解决方案