当前位置 : 主页 > 编程语言 > java >

android8.0报错:java.lang.IllegalStateException: Only fullscreen opaque activities can request ori

来源:互联网 收集:自由互联 发布时间:2022-08-10
解决方法 第一步,在styles.xml文件中添加如下样式 style name = "myTranslucent" parent = "AppTheme" item name = "android:windowBackground" @ android : color / transparent /item item name = "android:colorBackgroundCacheHint" @


解决方法

第一步,在styles.xml文件中添加如下样式

<style name="myTranslucent" parent="AppTheme">
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:colorBackgroundCacheHint">@null</item>
<item name="android:windowIsTranslucent">false</item>
<item name="android:windowAnimationStyle">@android:style/Animation</item>
</style>

关键是要添加这一条:

<item name="android:windowIsTranslucent">false</item>

第二步,在activity上应用此样式

<manifest>
...
<application>
....
<activity
android:name=".chatui.ui.activity.FullImageActivity"
android:configChanges="orientation|keyboardHidden|navigation|screenSize"
android:screenOrientation="portrait"
android:windowSoftInputMode="stateHidden|adjustPan"
android:theme="@style/myTranslucent" />
</application>
</manifest>

关键是这一条:

android:theme="@style/myTranslucent"

问题解决!!!


上一篇:如何隐藏WebView的滚动条
下一篇:没有了
网友评论