android panellistview 圆角实现代码

时间:2022-05-18 15:15:05

android panellistview 圆角实现代码

(效果如上图所示)

其实很简单:

比方说上面的容器是一个listview

 

复制代码 代码如下:

<listview
android:id="@+id/listview_devices"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
<span style="color: #ff0000"> android:background="@android:drawable/dialog_frame"</span>
android:cachecolorhint="@color/transparent" />


红色的那段代码是重点哦.

 

这样很简单的一行代码就可以实现啦.