I have this text view

<TextView android:id="@+id/name"
          android:singleLine="true"
          android:layout_height="wrap_content"
          android:textColor="#ffffff" 
          android:textSize="16sp"  
          android:layout_width="fill_parent"/>

The problem is if the text is bigger then the textview can display it just stop displaying it looks something like this |some unfinished tex| I want to have dots on the end in this way it will be more clear to the user that this is unfinished and it it is displayed only a part of the text

I would prefer something like this |Some unfinished te..|

How to implement this ?

link|improve this question

64% accept rate
feedback

4 Answers

up vote 3 down vote accepted

Have you tried setting android:ellipsize paremeter to "end"?

link|improve this answer
1  
as i know this is the correct answer :) – MoshErsan Feb 2 at 10:13
+1 simple & good Answer – SpK Feb 2 at 10:31
feedback

This method works fine for me. Just display your text throug this method -

public String stringshort(String inp)
 {
     if (inp.length()>10)
     {
        inp = inp.subSequence(0, 10)+"...";
     }  
     return inp;    
 }

For example, if you're going to set some strings into your textview. First pass your string to that method and, and give me the limit to that string. And, it'll automatically return by your limit of length.

If you use inp = inp.subSequence(0, 25)+"..."; means, it'll automatically return the 25 character length.

Just like this Hi i am Android developer....

link|improve this answer
It will work correctly only on one screen resolution/density. On other phones the width of the TextView might be different, so different number of characters will fit into the TextView. – Secator Feb 2 at 10:18
Okay. I'll update this to my Application. Thanks. – SpK Feb 2 at 10:31
feedback

I used the hack by checking text size every time i set it to textview and appended those dots after a substring of text.I don't know it is bad practice or so!! :P

link|improve this answer
feedback

you can do this type;

public String getChar(String inputstring){
String substring;
if(inputstring.length() >0 ){
substring=inputstring.substring(int beginIndex, int endIndex);
}
StringBuilder sb=new StringBuilder(substring);
sb.append("....");
return sb.tostring();
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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