0
通知をプルダウンしてその通知をクリックすると、そのアクティビティに電話したいと思います...どうすればいいですか?通知有効にする
はここに私のコードです:
public class SetReminder extends AppCompatActivity {
int notifyID = 1088;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_notification);
TextView helpsubtitle = (TextView)findViewById(R.id.subtitle_help);
Typeface typeface = Typeface.createFromAsset(getAssets(), "beyond_the_mountains.ttf");
helpsubtitle.setTypeface(typeface);
NotificationCompat.Builder mBuilder =
new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.diamond)
.setContentTitle("Crystallise")
.setContentText("making your thoughts crystal clear");
NotificationManager mNotificationManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
mNotificationManager.notify(notifyID, mBuilder.build());
}
}
鉱山シンボルコンテキスト+ asc42あなたはコンテキストを渡す必要が –
を解決することはできませんと言います。 すでにアクティビティに参加しているアクティビティ自体から通知を作成しているので、 'context'を' SetReminder.this'に置き換える必要があります – adhirajsinghchauhan