从 Android 中的 Activity 启动服务时出现“无法启动服务意图”错误

Posted

技术标签:

【中文标题】从 Android 中的 Activity 启动服务时出现“无法启动服务意图”错误【英文标题】:"Unable to start service Intent" error when starting service from an Activity in Android 【发布时间】:2011-06-02 00:39:57 【问题描述】:

我在 DDMS 中尝试使用 MyActivity 上的 CheckBox 来启动名为​​“MyService”的服务时看到以下错误:

W/ActivityManager(   73): Unable to start service Intent  cmp=com.example.android.myprogram/.MyService : not found

我使用了教程 http://developer.android.com/resources/tutorials/views/hello-formstuff.html 并将提供的代码添加到我的 onCreate() 方法的末尾。我在 MyActivity.java 和 MyService.java 中分别指定了类。

package com.example.android.myprogram;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.CheckBox;


public class MyActivity extends Activity 
    private static final String TAG = "MyActivity";

    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) 
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        final CheckBox checkbox = (CheckBox) findViewById(R.id.checkbox);
        checkbox.setOnClickListener(new OnClickListener() 
            public void onClick(View v) 
                // Perform action on clicks, depending on whether it's now checked
                if (((CheckBox) v).isChecked()) 
                    // TODO: Add code to START the service
                    Log.d(TAG, "startService from checkbox");     
                    startService(new Intent(MyActivity.this, MyService.class));
                 else 
                    // TODO: Add code to STOP the service
                    Log.d(TAG, "stopService from checkbox");     
                    stopService(new Intent(MyActivity.this, MyService.class));
                
            
        );
    

我的清单文件确实包含以下内容,其中我还尝试了完整的命名空间、短名称、在每次搜索时使用意图过滤器等。我并不是说什么是正确的。我只是把它停在了一个地方。

<service android:name=".MyService">
   <intent-filter><action android:name="com.example.android.myprogram.MyService"></action>
   </intent-filter>
</service>

最后,我决定将我的服务分解到最低限度:

package com.example.android.myprogram;


import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.util.Log;

public class MyService extends Service 
    private static final String TAG = "MyService";

    @Override
    public IBinder onBind(Intent intent) 
        return null;
    

    @Override
    public void onCreate() 
        Log.d(TAG, "onCreate");
        //code to execute when the service is first created
    

    @Override
    public void onDestroy() 
        Log.d(TAG, "onDestroy");
        //code to execute when the service is shutting down
    

    @Override
    public void onStart(Intent intent, int startid) 
        Log.d(TAG, "onStart");
        //code to execute when the service is starting up
    

我对 Java/Android 编程和一般编程(但正在学习)非常、非常、非常陌生,所以我确信这是用户错误,可能是其他所有人的常识。任何建议都会很棒。

【问题讨论】:

您能粘贴服务的代码吗? 克里斯蒂安,感谢您的回复。已添加代码。问题:我应该能够使用它并获得成功的结果吗? android.kgmoney.net/2010/05/08/…。它也不起作用。 【参考方案1】:

我一直在四处寻找,正如我所想的那样,我犯了一个明显的新手错误。在 AndroidManifest.xml 中,我在 之后有 声明,而不是嵌套在其中。

【讨论】:

显然你今天为我节省了很多时间。谢谢。【参考方案2】:

您无需编写意图过滤器,因为您正在显式启动服务。 如果您是 android 新手,请使用以下链接,它将对您非常有帮助。 它也有服务示例。 http://saigeethamn.blogspot.com/2009/08/android-developers-tutorial-for.html

【讨论】:

感谢您的回复。实际上,自从最初发布后,我就已经删除了该行,因为我记得那只是为了让第 3 方应用程序使用我的服务。不幸的是,我仍然收到错误消息。【参考方案3】:

查看我的答案 Unable to start Service Intent

有一个很好的例子 http://www.websmithing.com/2011/02/01/how-to-update-the-ui-in-an-android-activity-using-data-from-a-background-service/comment-page-1/

【讨论】:

【参考方案4】:

清理 manifest.xml 中的行

      <intent-filter>
             <action android:name="com.example.android.myprogram.MyService"> 
            </action>
        </intent-filter>

【讨论】:

以上是关于从 Android 中的 Activity 启动服务时出现“无法启动服务意图”错误的主要内容,如果未能解决你的问题,请参考以下文章

如何从 Android 4.3 中的类(此类扩展 LinearLayout)启动 Activity?

关于android编程中service和activity的区别

浅析Android Activity的启动过程

android中 activity1中启动了activity2, activity2中启动了activity3,怎么把activity3中的值直接返回给

在 Android 中从服务启动 Activity

在 Android 中从服务启动 Activity