0

我想通过此代码使用 BroadcastReceiver 启动服务

public void onReceive(Context context, Intent intent) {

    Intent myIntent = new Intent(context,BlueToothService.class);   

    context.startService(myIntent);

}

但无法启动服务。我还在清单中注册了服务和接收者。

而且我还有一个疑问,我们可以在没有活动的情况下使用广播接收器吗?

这是我的服务班

public class BlueToothService extends Service {

@Override
public IBinder onBind(Intent intent) {
    // TODO Auto-generated method stub
    return null;
}

@Override
public void onStartCommand(Intent intent, int startId) {

    super.onStart(intent, startId);
    Toast.makeText(this, "service Started", Toast.LENGTH_LONG);
    doBluetoothJob();

}

我的清单文件看起来像这样。

<uses-permission android:name="android.permission.BLUETOOTH" />
    <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
    <uses-permission android:name="android.permission.BROADCAST_SMS" />

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" >
    </application>

    <service
        android:name=".BlueToothService"
        android:enabled="true" >
    </service>

    <receiver android:name="com.simsys.bt.DemoBT" >
    </receiver>

    <intent-filter>
        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
4

4 回答 4

6

这与我一起工作,我创建了一个接收器。

public class MyReceiver extends BroadcastReceiver {

    @Override
    public void onReceive(Context context, Intent intent) {
        // TODO Auto-generated method stub
        Toast.makeText(context, "MyReceiver Started", Toast.LENGTH_SHORT).show();
        Intent myIntent=new Intent(context,MyService.class);        
        context.startService(myIntent);
    }
}

然后创建一个简单的服务

public class MyService extends Service {

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

    @Override
    public int onStartCommand(Intent intent, int flags, int startId){
        Toast.makeText(getBaseContext(), "Service Started", Toast.LENGTH_SHORT).show();
        // We want this service to continue running until it is explicitly
        // stopped, so return sticky.
        return START_STICKY;
    }
}

不要忘记在清单文件中为广播接收器和服务创建条目

<application android:icon="@drawable/icon" android:label="@string/app_name">        
<service
    android:enabled="true"
    android:name=".MyService">
    <intent-filter>
        <action
            android:name = "com.rdc.MyService">
        </action>
    </intent-filter>
  </service>
  <receiver
    android:enabled="true"
    android:name=".MyReceiver">
    <intent-filter>
        <action android:name = "android.intent.action.BOOT_COMPLETED"/>
    </intent-filter>
  </receiver>
</application>

现在重新启动后,模拟器 Toast 将出现。

于 2012-05-14T15:00:28.947 回答
1

您发布的清单文件格式不正确。<service><receiver>标签需要在标签<application>像这样:

<application
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name" >
    <service
        android:name=".BlueToothService"
        android:enabled="true" >
    </service>
    <receiver android:name="com.simsys.bt.DemoBT" >
    </receiver>
</application>
于 2012-05-14T15:52:40.550 回答
0

您需要在 Service 子类中覆盖onStartCommand()而不是 onStart() 。onStart() 已折旧,仍应调用它,但建议覆盖 onStartCommand() 并查看是否有效。

此外,在您的清单文件中,服务、接收者和意图过滤器标记应该是应用程序标记的子级。接收者还需要声明它将处理什么意图。例如

<receiver android:name="com.simsys.bt.DemoBT" >
    <intent-filter>
        <action android:name="com.simsys.bt.intents.StartService" />
    </intent-filter>    
</receiver>
于 2012-05-14T13:34:07.080 回答
0

尝试用以下方式展示你的吐司:

Toast.makeText(this, "service Started", Toast.LENGTH_LONG).show();

您需要在清单中为服务声明提供一个特定的意图过滤器,其中包含您希望它监听的意图,例如:

<receiver android:name="com.simsys.bt.DemoBT" >
    <intent-filter>
        <action android:name="your.intent.action.definition" />
    </intent-filter>    
</receiver>
于 2012-05-14T13:42:31.190 回答