android panellistview 圆角实现代码
时间:2021-01-07 11:15:19|栏目:Android代码|点击: 次
(效果如上图所示)
其实很简单:
比方说上面的容器是一个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" />
红色的那段代码是重点哦.
这样很简单的一行代码就可以实现啦.
上一篇:Android应用保活实践详解
栏 目:Android代码
下一篇:RecylerView实现流布局StaggeredGridLayoutManager使用详解
本文标题:android panellistview 圆角实现代码
本文地址:http://www.codeinn.net/misctech/41582.html