gpt4 book ai didi

android - 在android应用程序的后台服务中强制关闭

转载 作者:行者123 更新时间:2023-11-30 04:24:00 25 4
gpt4 key购买 nike

嗨。我已经按照本教程创建了一个后台服务应用程序 http://androidsourcecode.blogspot.com/2010/10/basic-android-background-service.html .但是我在 list 文件中有一个错误。

错误信息

The element type "category" must be terminated by the matching end-tag "</category>".

我不知道如何创建 Android 后台服务。对此的任何指导表示赞赏。

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.javaorigin.android.sample.service" android:versionCode="1"
android:versionName="1.0">
<application icon="@drawable/icon" label="@string/app_name">
<service class=".MyService" name=".MyService">
<intent-filter>
<action android:value="com.javaorigin.android.sample.service.MY_SERVICE"
android:name=".MyService" />

</intent-filter>
</service>
<activity android:name=".SampleAction"
android:label="@string/app_name">
<intent-filter>
<action name="android.intent.action.MAIN">
<category name="android.intent.category.LAUNCHER">
</intent-filter>
</activity>

最佳答案

你的 list 文件没有大问题。该教程看起来很旧,您需要做一些更改才能消除错误。就像结束 Action 和类别标记的正斜杠一样,使用 android:name 代替属性名称,将 uses-sdk 移到应用程序标记之前(Lint 更喜欢它)。就是这样!

试试这个:

 <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.javaorigin.android.sample.service" android:versionCode="1"
android:versionName="1.0">
<uses-sdk minsdkversion="8"/>
<application icon="@drawable/icon" label="@string/app_name">
<service class=".MyService" android:name=".MyService">
<intent-filter>
<action android:value="com.javaorigin.android.sample.service.MY_SERVICE"
android:name=".MyService" />

</intent-filter>
</service>
<activity android:name=".SampleAction"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>

</application>
</manifest>

关于android - 在android应用程序的后台服务中强制关闭,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8830454/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com