1

那么在我的应用程序中,我正在尝试以下功能。我希望根据日期和时间,用户接收一些通知。

例如:

  1. 19.13 年 9 月 9 日收到带有 message1 的通知
  2. 9 月 10 日,07.30,带有消息 2,
  3. 同一天,但 11.50,消息 3 等等......

我使用了警报和推送栏通知,但它仅适用于第一个。所以我为此进行了搜索,并且据说我必须使用重复警报管理器。

在我发布我的代码之前,我想澄清一些事情:1)我认为它应该像这样工作:我必须每 1-2 分钟检查一次,现在是几点,从事件的数组中获取我的下一个“时间”被存储,并为此设置警报,对吗?然后鉴于这段代码将每 1-2 分钟运行一次,我将再次检查,获取下一个事件,为该时间设置警报等等。

我对么?

因此,首先,我正在尝试实现一个重复的警报管理器,它每 1 分钟将向我显示一条 Toast 消息(如果我这样做并用 get_next_event() 和 set_next_notification() 替换 toast 消息将完成我认为的工作。-这些功能在我的项目中运行良好,只设置了一个警报)。

但问题是,当我开始服务时,我什么也看不到。

这是我的代码:

报警器.java

public class Alarm extends BroadcastReceiver 
    {    
         @Override
         public void onReceive(Context context, Intent intent) 
         {   
             Toast.makeText(context, "Starting Alarm Manager", Toast.LENGTH_LONG).show(); // For example

             PowerManager pm = (PowerManager) context.getSystemService(Context.POWER_SERVICE);
             PowerManager.WakeLock wl = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "");
             wl.acquire();

             // Put here YOUR code.
             Toast.makeText(context, "Alarm !!!!!!!!!!", Toast.LENGTH_LONG).show(); // For example

             wl.release();
         }

     public void SetAlarm(Context context)
     {
         Toast.makeText(context, "Setting Alarm Manager", Toast.LENGTH_LONG).show(); // For example

         AlarmManager am=(AlarmManager)context.getSystemService(Context.ALARM_SERVICE);
         Intent i = new Intent(context, Alarm.class);
         PendingIntent pi = PendingIntent.getBroadcast(context, 0, i, 0);
         am.setRepeating(AlarmManager.RTC_WAKEUP, System.currentTimeMillis(), 1000 * 60 , pi); // Millisec * Second * Minute
     }

     public void CancelAlarm(Context context)
     {
         Intent intent = new Intent(context, Alarm.class);
         PendingIntent sender = PendingIntent.getBroadcast(context, 0, intent, 0);
         AlarmManager alarmManager = (AlarmManager) context.getSystemService(Context.ALARM_SERVICE);
         alarmManager.cancel(sender);
     }

你的服务.java

public class YourService extends Service
{
    Alarm alarm = new Alarm();
    public void onCreate()
    {
        super.onCreate();    
        Toast.makeText(YourService.this, "Service Created", Toast.LENGTH_LONG).show(); // For example

    }

    public void onStart(Context context,Intent intent, int startId)
    {
        Toast.makeText(YourService.this, "Setting from Service", Toast.LENGTH_LONG).show(); // For example

        alarm.SetAlarm(context);
    }

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

DemoActivity.java

 public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    buttonStart = (Button) findViewById(R.id.buttonStart);
    buttonStop = (Button) findViewById(R.id.buttonStop);

    buttonStart.setOnClickListener(this);
    buttonStop.setOnClickListener(this);
  }

  public void onClick(View src) {
    switch (src.getId()) {
    case R.id.buttonStart:
        Toast.makeText(ServicesDemo.this, "Button Pressed", Toast.LENGTH_LONG).show(); // For example
      Log.d(TAG, "onClick: starting srvice");
      startService(new Intent(this, YourService.class));
      break;
    case R.id.buttonStop:
      Log.d(TAG, "onClick: stopping srvice");
      stopService(new Intent(this, YourService.class));
      break;
    }
  }

所以我按下按钮,我看到“按钮被按下”,我看到“服务已创建”,但是没有显示警报开始的祝酒词。当然,我每 1 分钟都看不到任何东西。

这是我的清单。

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

    <activity android:name=".ServicesDemo" android:label="@string/app_name">
      <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
      </intent-filter>
    </activity>
    <service android:enabled="true" android:name=".YourService" />
<receiver  android:process=":remote" android:name="Alarm"></receiver>

  </application>
  <uses-sdk android:minSdkVersion="8" />
      <uses-permission android:name="android.permission.WAKE_LOCK"></uses-permission>

</manifest> 

那么我需要在代码或清单中进行哪些更改?

4

1 回答 1

0

我建议你使用AlarmManager这个:http: //developer.android.com/reference/android/app/AlarmManager.html

于 2012-09-09T12:38:33.503 回答