GCMプッシュからメッセージを受信したときに通知を生成するためにブロードキャストレシーバーが必要なアプリケーションを開発しています。
私が使用しているコードはコンパイルを拒否し、次のように述べています
"Cannot make a static reference to the non-static method acquire() from
the type PowerManager.Wakelock"
IDE (日食) は、私がすべきことを提案するようになりました
remove argument to match "acquire()"
ただし、それを行うと、次に表示されるエラーは次のとおりです。
The method acquire(long) in the type PowerManager.WakeLock is not applicable
for the arguements(Context)....
ブロードキャスト レシーバのコードは次のとおりです。
private final BroadcastReceiver mHandleMessageReceiver = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
String newMessage = intent.getExtras().getString(EXTRA_MESSAGE);
WakeLock.acquire(getApplicationContext());
// Showing received message
lblMessage.append(newMessage + "\n");
Toast.makeText(getApplicationContext(), "New Message: " + newMessage, Toast.LENGTH_LONG).show();
// Releasing wake lock
WakeLock.release();
}
どこに行方不明ですか?