我想要的: 我正在使用Listview,我想用圆角使用这个视图。
情况: 没有圆角的列表视图:-(。
我使用不同的示例来定义customShape
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android">
<corners
android:radius="30dp"/>
<stroke
android:width="1dp"
android:color="#000000" />
</shape>
如果我将此customShape应用于列表视图项(Textview),Listview中的每个条目都有圆角。真是太疯狂了!因此customShape.xml可以工作,但不能使用listview的边框。
任何想法???
关注marcel
答案 0 :(得分:1)
获取列表视图的id视图。 ListView.setBackgroundResource(R.drawable.custom_shape);
删除xml中的背景设置。 将custom_shape.xml放在drawable文件夹中。从中移除笔划组件,因为不需要圆角