动态通知

时间:2012-12-06 14:48:31

标签: android notifications

我想通过调用R.string.app_name来放置动态通知标题,但我无法在CharSequence中转换它。 R.string返回一个与通知不兼容的整数id。 这是尝试

CharSequence tickerText = R.string.app_name; //Error

Notification notification = new Notification(R.drawable.ico, tickerText,System.currentTimeMillis());

我怎么做?

1 个答案:

答案 0 :(得分:0)

CharSequence tickerText = getApplicationContext().getString(R.string.app_name);