[펌] Android - Spannable 을 잘 사용하면 TextView 의 마스터!!
출처: http://aroundck.tistory.com/2727 BulletSpan /* public BulletSpan (int gapWidth, int color) -gapWidth: gap in px between bullet and text -color: bullet color (optionnal, default is transparent) */ //create a black BulletSpan with a gap of 15px span = new BulletSpan(15, Color.BLACK); QuoteSpan /* public QuoteSpan (int color) -color: quote vertical line color (optionnal, ..