2012-12-06 64 views
0

我想通過調用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
CharSequence tickerText = getApplicationContext().getString(R.string.app_name);