android textview 显示一行,且超出自动截断,显示"..."

http://hi.baidu.com/shgy_999/item/a339ee5f70ddc9c09f266720

android textview 显示一行,且超出自动截断,显示"..."

android:layout_width="wrap_content" 

android:layout_height="wrap_content" 

android:id="@+id/PopNameList" 
android:singleLine="true"
android:ellipsize="end"

android:textStyle="bold"  
android:textSize="15sp"
android:width="120dp"/>

 

以下显示两行,超出多余显示。。。

         android:layout_width="fill_parent"
       android:layout_height="wrap_content"
       android:includeFontPadding="false"
       android:textStyle="bold"
       android:textSize="@dimen/text_size_15"
       android:textColor="@color/listitem_black"
       android:maxLines="2"
      android:ellipsize="end"/>  

 

 

你可能感兴趣的:(android textview 显示一行,且超出自动截断,显示"...")