我想通过调用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());
我怎么做?
答案 0 :(得分:0)
CharSequence tickerText = getApplicationContext().getString(R.string.app_name);