String aux = getInserzionista(offerta.getIdInserzionista());
sotto_titolo.setText("Offerta dal " + aux);
int inizio = 12;
int fine = 11+aux.length();
sotto_titolo.setMovementMethod(LinkMovementMethod.getInstance());
sotto_titolo.setText(sotto_titolo.getText().toString(),BufferType.SPANNABLE);
Spannable mySpannable = (Spannable) sotto_titolo.getText();
ClickableSpan myClickableSpan = new ClickableSpan() {
@Override
public void onClick(View widget) {
}
};
//if i put this, not work
mySpannable.setSpan(new ForegroundColorSpan(Color.RED), inizio, fine, 0);
mySpannable.setSpan(myClickableSpan, inizio, fine + 1,Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
但是,如果我把這個:
mySpannable.setSpan(new ForegroundColorSpan(Color.RED), 0, 4, 0);
它的作品,因爲從0到4文本顏色的!
所以,我的問題是:
如何更改鏈接(在一個藍色帶下劃線)的顏色?
謝謝
沒有函數updateDrawState(),類型ClickableSpan :( – Andrea 2012-07-19 08:33:47