android textView not whole appear -


i have textview,its height fixed,and text characters sum not uncertain,

 <textview   android:id="@+id/item_content" android:layout_width="wrap_content"  android:layout_height="30dip" android:layout_marginbottom="5dip" android:ellipsize="end" android:textcolor="#000000"  /> 

but when text height > height of textview,in last line lower part oftext characters cutted

as http://i.stack.imgur.com/qca9c.jpg , http://i.6.cn/cvbnm/5e/b7/41/f929ffab5b4e007e6e643ef5340325eb.jpg use red pen mark

pls tru setting height wrap_content rather fill_parent.

<textview   android:id="@+id/item_content" android:layout_width="wrap_content"  android:layout_height="wrap_content" android:layout_marginbottom="5dip" android:ellipsize="end" android:textcolor="#000000"  />    

Comments

Popular posts from this blog

linux - Mailx and Gmail nss config dir -

c# - Is it possible to remove an existing registration from Autofac container builder? -

php - Mysql PK and FK char(36) vs int(10) -