美文网首页
安卓极光分享Only fullscreen opaque act

安卓极光分享Only fullscreen opaque act

作者: liuweilyy | 来源:发表于2019-04-17 11:56 被阅读0次

    安卓8.0系统极光分享报错Only fullscreen opaque activities can request orientation

    解决方法:
    https://community.jiguang.cn/t/topic/27662/17
    这个问题是8.0系统的一个的bug,如果是Gradle集成你试试manifest这样配置看看
    在app的AndroidManifest.xml里面配置

    <activity
            android:name="cn.jiguang.share.android.ui.JiguangShellActivity"
            android:exported="true"
            android:launchMode="singleTask"
            android:theme="@android:style/Theme.Translucent.NoTitleBar"
            android:windowSoftInputMode="stateHidden|adjustResize"
            tools:node="replace">
            <!-- Optional QQ分享回调-->
            <!-- scheme为“tencent”前缀再加上QQ开发者应用的appID;例如appID为123456,则scheme=“tencent123456” -->
            <intent-filter>
                <data android:scheme="tencent1106011004" />
                <action android:name="android.intent.action.VIEW" />
                <category android:name="android.intent.category.BROWSABLE" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
    
            <!-- Optional 新浪微博分享回调 -->
            <intent-filter>
                <action android:name="com.sina.weibo.sdk.action.ACTION_SDK_REQ_ACTIVITY" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
    
            <!-- Optional 新浪微博私信回调-->
            <intent-filter>
                <action android:name="android.intent.action.VIEW" />
                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />
                <data android:scheme="jsharesdk" android:host="sinaweibo"/>
            </intent-filter>
        </activity>
    

    相关文章

      网友评论

          本文标题:安卓极光分享Only fullscreen opaque act

          本文链接:https://www.haomeiwen.com/subject/shwgwqtx.html