Chciałbym napisać aplikację uruchamianą po przypomnieniu kalendarza. Zdaję sobie sprawę, że nie ma oficjalnie udokumentowanego sposobu, aby to zrobić, ale widziałem w dzienniku, że kiedy mój alarm kalendarza zgaśnie na moim telefonie (Droid X), AlertReceiver wskazuje, że otrzymał android.intent.action.EVENT_REMINDER:Nie można odebrać android.intent.action.EVENT_REMINDER transmisji
01-03 11:03:00.029 D 1523 AlertReceiver onReceive: a=android.intent.action.EVENT_REMINDER Intent { act=android.intent.action.EVENT_REMINDER dat=content://com.android.calendar/129407058000 flg=0x4 cmp=com.android.calendar/.AlertReceiver (has extras) }
Więc skonfigurować prosty BroadcastReceiver:
package com.eshayne.android;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
public class CalendarTest extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
android.util.Log.i("CalendarTest", "CalendarTest.onReceive called!");
}
}
z tego manifestu:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.eshayne.android"
android:versionCode="1"
android:versionName="1.0">
<uses-permission android:name="android.permission.READ_CALENDAR" />
<application android:icon="@drawable/icon" android:label="@string/app_name" android:debuggable="true">
<receiver android:name="com.eshayne.android.CalendarTest">
<intent-filter>
<action android:name="android.intent.action.EVENT_REMINDER" />
</intent-filter>
</receiver>
</application>
<uses-sdk android:minSdkVersion="8" />
</manifest>
Niestety, kiedy kładę to na moim telefonie i skonfigurować wydarzenie w kalendarzu z przypomnieniem - po przypomnieniu wciąż widzę wpis dziennika AlertReceiver, ale nie mój.
Mam również przeczytać tutaj o niektórych zamiarach systemu, które wymagają rejestracji za pomocą kodu, a nie w manifeście. Tak, próbowałem następujące zamiast:
package com.eshayne.android;
import android.app.Activity;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.os.Bundle;
public class CalendarTestDisplay extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
registerReceiver(new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
android.util.Log.i("CalendarTestDisplay", "received broadcast");
}
},
new IntentFilter("android.intent.action.EVENT_REMINDER"));
}
}
z tym zmodyfikowanym manifeście:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.eshayne.android"
android:versionCode="1"
android:versionName="1.0">
<uses-permission android:name="android.permission.READ_CALENDAR" />
<application android:icon="@drawable/icon" android:label="@string/app_name" android:debuggable="true">
<activity android:name=".CalendarTestDisplay"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="8" />
</manifest>
bez lepszego wyniku.
Jakieś pomysły, których może mi brakować? Albo jakieś inne pomysły na to, w jaki sposób mogę uchwycić zdarzenia alarmowe z kalendarza?
Dzięki, Ethan
Och, cóż, był wart strzały.Dzięki! – eshayne