Use SpannableString nos widgets da tela inicial do Android?

Eu posso usarSpannableStrings no textView de um widget? Eu tentei e tudo o que foi feito foi texto simples. Eu não sei se é algo que estou fazendo errado (mais provável), ou se simplesmente não é possível por algum motivo.

Aqui está o código que estou usando (nada especial realmente ...)

 public static void updateWidgetState(Context paramContext, String paramString, Integer appWidgetId) {

    SpannableString majorLabel = new SpannableString("");
    SpannableString minorLabel = new SpannableString("");
    if (position > -1) {
        majorLabel = GetParsedMajorLabel(paramContext);
        minorLabel = GetParsedMinorLabel(paramContext);
    }
    RemoteViews localRemoteViews = buildUpdate(paramContext, paramString, appWidgetId);
    localRemoteViews.setTextViewText(R.id.majorlabel, majorLabel);
    localRemoteViews.setTextViewText(R.id.minorlabel, minorLabel);
 }

questionAnswers(3)

yourAnswerToTheQuestion