この方法でマニフェストで宣言された電話信号強度をリッスンするブロードキャストレシーバーを開発しました
<receiver android:name="it.cazzeggio.android.PhoneStateListener" >
<intent-filter android:priority="999" >
<action android:name="android.intent.action.SIG_STR" />
</intent-filter>
</receiver>
Javaコードは
public class PhoneStateListener extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
Log.e(PhoneStateListener.class.getSimpleName(), new Date().toString());
try{
TelephonyManager telephony = (TelephonyManager)
context.getSystemService(Context.TELEPHONY_SERVICE);
//...some checks to be sure that is a gsm-event..
GsmCellLocation location = (GsmCellLocation) telephony.getCellLocation();
foundCells.add(0,new String[] {
telephony.getNetworkOperator() + "_" + location.getLac() + "_" +
location.getCid() , ""+(bundle.getInt("GsmSignalStrength")+1)});
if(!foundCells.isEmpty())
Functions.CellHistory.addHistory(foundCells);
}catch (Exception e) {
Log.e(PhoneStateListener.class.getSimpleName(), e.getMessage(), e);
}
}
画面がオンの場合はすべて問題ありませんが、電話がスリープモードになるとレシーバーが動作しなくなります (= onReceive メソッドにイベントがディスパッチされません)。
レシーバーをサービスとして登録するか、結果なしで PARTIAL_WAKE_LOCK を使用しようとしました (私は初心者です)。解決策はありますか?
前もって感謝します