我已经开发了android应用程序。当使用Android服务点击按钮并显示通知和警报时,我已经在后台运行应用程序。所以我在Android Manifest文件中使用了android:theme="@style/Theme.Dialog"
但是我无法在设备中使用其他应用程序。后来我使用了styles.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分钟接收通知和警报,同时我可以在我的设备中打开其他应用程序。请引导我。谢谢你。
答案 0 :(得分:0)
看起来你已经创建了一个透明的Activity并从那里完成了所有任务。如果是这种情况那么你将无法打开其他应用程序(当该活动在前台时),因为它是透明的它给你感觉它在后台运行,但事实并非如此
所以要在后台使用Service
执行任务。请参阅this。