tags:

views:

43

answers:

2

Hi friends

I am adding linear layout dynamically and adding 3 text view getting the content from webservices for text view if the content of 3 text size is larger it will display in the end of next line .i want display in start line how can i do?

Thanks

A: 

Hai refer this answer....

TextView   header_text;
header_text = (TextView) findViewById(R.id.header_text1);   
header_text.setSingleLine();
Tilsan The Fighter
A: 

try to use android:gravity="left" or alignParent="left"

MGS