I have a simple paragraph that has bullets.
How can i indent my whole bulletlist from:
some text here..
• item 1
• item 2
• item 3
to
some text here..
     • item 1 text here text here text here
        ext here text here text here 
     • item 2
        ext here text here text here
     • item 3
        ext here text here text here
BTW, im using these codes:
for (int i = 0; i < bulletListArray.length; i++) {
            String text = bulletListArray[i];
            SpannableString s = new SpannableString(text + "\n");
            // s.setSpan(new BulletSpan(), 1, text.length(),
            // Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
            s.setSpan(new BulletSpan(10), 0, text.length(), 0);
            allText = TextUtils.concat(allText, s);
I appreaciate your help!
thanks.