无法使用服务广播接收机启动(Not able to start Service using Broa

2019-09-17 05:21发布

我想开始使用广播接收器,此代码服务

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>

Answer 1:

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

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>

现在重启后的仿真面包就会出现。



Answer 2:

您发布的清单文件被错误地制定。 所述<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>


Answer 3:

尝试与展示你的面包:

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

你需要给服务声明与你想它来听喜欢的意向清单的具体IntentFilter的:

<receiver android:name="com.simsys.bt.DemoBT" >
    <intent-filter>
        <action android:name="your.intent.action.definition" />
    </intent-filter>    
</receiver>


Answer 4:

你需要重写onStartCommand()在您的服务子类未在onStart()。 在onStart()折旧,它仍然应该叫,但将建议重写onStartCommand(),看看是否可行。

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

<receiver android:name="com.simsys.bt.DemoBT" >
    <intent-filter>
        <action android:name="com.simsys.bt.intents.StartService" />
    </intent-filter>    
</receiver>


文章来源: Not able to start Service using Broadcast Receivers