alipay / mPaaS

mPaaS Demo 合集,mPaaS 是源自于支付宝的移动开发平台。The collection of demos for mPaaS components. mPaaS is the Mobile Development Platform which oriented from Alipay.
https://tech.antfin.com/docs/2/49549
Apache License 2.0
324 stars 55 forks source link

UCWebview如何设置横竖屏显示 #15

Closed wenchaoweng closed 4 years ago

wenchaoweng commented 5 years ago

原生Webview可以随着手机转成横屏而显示横屏, 但UCWebview好像默认就是竖屏, 如何设置成横屏显示?

SpinyTech commented 5 years ago

在你的 manifest 中加入如下代码即可

        <activity
            android:name="com.alipay.mobile.nebulacore.ui.H5Activity"
            android:configChanges="orientation|keyboardHidden|navigation|screenSize|smallestScreenSize|screenLayout"
            android:exported="false"
            android:hardwareAccelerated="true"
            android:screenOrientation="landscape"
            android:windowSoftInputMode="adjustPan">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>