关于 ListView layout_width

 

 

listView中文字被选中时,如何使显示的选中高亮的宽度是整行?

需要指定 layout_width 为一个具体的数值,或者为fill_parent

如下:

<ListView

   android:layout_width="160px"

     android:layout_height="fill_parent"

android:scrollbars="vertical"  

   />

 

如果想显示的高亮宽度为文字的宽度的话,将 layout_width指定为 wrap_content

 

<ListView

   android:layout_width="wrap_content"

     android:layout_height="fill_parent"

android:scrollbars="vertical"  

   />

 

你可能感兴趣的:(android,ListView,layout)