Android 没有资源匹配 android:windowIsFloating
Android No resource matches android:windowIsFloating
看完这个视频后,我正在尝试让我的 activity 弹出/浮动 activity
但我想 window 背景半透明。
所以我添加了 windowIsFloating -> true
<style name="AppTheme.NamTheme">
<item name="android:windowIsFloating">true</item>
<item name="android:windowCloseOnTouchOutside">true</item>
</style>
但是出现以下错误
Error:(2374, 21) No resource found that matches the given name: attr 'android:windowIsFloating'.
将父 android 主题添加到您的自定义主题。例如,
<style name="AppTheme.NamTheme" parent="android:Theme.Light.NoTitleBar">
<item name="android:windowIsFloating">true</item>
<item name="android:windowCloseOnTouchOutside">true</item>
</style>
看完这个视频后,我正在尝试让我的 activity 弹出/浮动 activity
但我想 window 背景半透明。 所以我添加了 windowIsFloating -> true
<style name="AppTheme.NamTheme">
<item name="android:windowIsFloating">true</item>
<item name="android:windowCloseOnTouchOutside">true</item>
</style>
但是出现以下错误
Error:(2374, 21) No resource found that matches the given name: attr 'android:windowIsFloating'.
将父 android 主题添加到您的自定义主题。例如,
<style name="AppTheme.NamTheme" parent="android:Theme.Light.NoTitleBar">
<item name="android:windowIsFloating">true</item>
<item name="android:windowCloseOnTouchOutside">true</item>
</style>