I have a TextView like below. I used this code to set gray color for a part of the text.

// Prepare result text.
final String resultText = text + "\n\n" + dictionaryName;
final SpannableString styledResultText = new SpannableString(resultText);
styledResultText.setSpan(new ForegroundColorSpan(Color.GRAY), text.length() + 2, text.length() + 2 + dictionaryName.length(), 0);
resultTextView.setText(styledResultText);

Now I want to set align for it. How to do? Android doesn't have any span class for alignment. I can't find out anything like "AlignmentSpan".

enter image description here

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

AFAIK this is not possible. I would really aim to have those as two different fields. It seems like you have the data separated, why not just create a separate TextView for the grey text (dictionaryName)?

I have tried to use spannables as less as possible for this very reason.

link|improve this answer
feedback

If the resultText is always going to be right-aligned, add the gravity="right" attribute to your resultTextView instead of trying to right-align the text with styled spannable strings. This is assuming the grey text is within a separate TextView than your main text.

In xml for the result (grey) text:

<TextView android:id="@+id/resultTextView" 
    android:gravity="right" 
    android:layout_width="fill_parent" />
link|improve this answer
No, I mean the black text left aligned and the gray text right aligned. I call it "multiple alignment". :) – Emerald214 Jul 11 '11 at 17:45
You would need to separate the black text from the result text (have 2 separate textviews). – John Leehey Jul 11 '11 at 18:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.