我已经开发了android应用程序。当使用android服务单击按钮并显示通知和警报时,我一直在后台运行该应用程序。所以我android:theme="@style/Theme.Dialog"
在Android Manifest文件中使用了但我无法在设备中使用其他应用程序。后来我使用了样式.xml
这是我的 styles.xml 代码:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Theme.Transparent" parent="android:Theme">
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowIsFloating">true</item>
<item name="android:backgroundDimEnabled">false</item>
</style>
</resources>
而且在我使用的 Android Manifest 文件中:
android:theme="@style/Theme.Transparent"
即使那样我也无法打开其他应用程序,而且只有一次我收到警报框。
但我需要在后台运行应用程序并每 30 分钟接收一次通知和警报,同时我可以在我的设备中打开其他应用程序。请指导我。提前致谢。