2
私は、着信メッセージをユーザーに通知するために使用したい次の単純なクラスを持っています(私はアプリケーションの進行に合わせて進化させます)。コードされNotificationCompat.Builder:メソッドbuild()を解決できません
は、メソッドのビルド()ここで
を解決できません:
import android.app.Activity;
import android.app.NotificationManager;
import android.content.Context;
import android.os.Bundle;
import android.support.v4.app.NotificationCompat;
public class UserNotificationActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
public void triggerNoti() {
NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.ic_launcher)
.setContentTitle("My notification")
.setContentText("Hello World!");
NotificationManager mNotificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
mNotificationManager.notify(001, mBuilder.build());
}
}
しかし、今のところ、最後の行に、次のエラーがあり、私はそれを実行することはできません
私はこれを試しましたsolutionしかし、変更はありません
私は間違って何をしていますか?
P.S.:ターゲット(&分)SDK = 21
おかげで、まだ私は同じエラーを持っていると悲しそうにかなり私のジレンマを解決していません!最後の行に同じエラーが表示されます –
インポートを確認します。import android.support.v4.app.NotificationCompat; – ADM
既にインポート済みです。 –