6

我是android的初学者。我有两节课,第一节课是

public class SmsReceiver extends BroadcastReceiver{}

第二课是

public class SMS extends Activity{}

我想做的只是:当我收到短信时,开始活动并做点什么。但我想使用“服务”而不是“活动”。我的意思是当应用程序启动时,然后在没有活动的情况下启动服务。

这可能吗 ?

4

3 回答 3

3

从 SmsReceiver 启动您的服务:

public class SmsReceiver extends BroadcastReceiver{
@Override
   public void onReceive(Context context, Intent intent) {
      String action = intent.getAction();
      if(action.equals("android.provider.Telephony.SMS_RECEIVED")){
        //action for sms received

           // start service here
          Intent intent=new Intent(context,Your_Service.class);
          context.startService(intent);

      }
      else {

      }     
   }
}

并确保您已将服务注册AndroidManifest.xml为:

<service android:name="com.xxx.xx.Your_Service" />
于 2012-12-03T10:44:32.400 回答
1

是的,您可以通过创建一个在应用程序启动时调用您的服务的广播接收器来做到这一点。这是我给出的完整答案。Android - 在启动时启动服务

如果您不想要任何图标/启动器为您的应用程序,您也可以这样做,只是不要创建任何活动

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

只需将您的服务声明为正常声明即可。

于 2012-12-03T10:35:32.137 回答
0

当您收到短信时,您可以通过广播接收器启动您的服务

@Override
public void onReceive(Context context, Intent intent) {

        try {

            context.startService(new Intent(context,
                    YourService.class));
        } catch (Exception e) {
            Log.d("Unable to start ", "Service on ");
        }

请确保您已提及您的 AndroidManifest.xml 文件的权限

    <uses-permission android:name="android.permission.RECEIVE_SMS">

对于短信发送和接收,您可以查看本教程在 android 中发送短信

于 2012-12-03T10:44:18.187 回答