0

我正在尝试创建一个圆形和白色的 ListView:

在此处输入图像描述

到目前为止,我已经尝试过使用</style>属性来设置listview的背景,但是无法得到这个效果。如果有人可以给我提示,那就太好了。

我知道我必须使用自定义列表视图,因此我相信我必须在 XML 中为自定义列表项重新创建它。

4

1 回答 1

1

您可以通过添加以下代码来创建它:

在drawable文件夹中创建rounded_corners.xml ,如下所示:

rounded_corners.xml

<?xml version="1.0" encoding="UTF-8"?> 
<shape xmlns:android="http://schemas.android.com/apk/res/android" 
     android:shape="rectangle"> 
     <gradient android:startColor="color of your choice" android:endColor="color of your choice" 
            android:angle="270"/> 

    <corners android:bottomRightRadius="10dp" android:bottomLeftRadius="10dp" 
     android:topLeftRadius="10dp" android:topRightRadius="10dp"/> 
</shape> 

并将其添加到列表视图中,如下所示:

<ListView
        android:id="@+id/listview"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:clickable="true"
        android:background="@drawable/rounded_corners"
       >
    </ListView>
于 2012-11-20T06:06:46.980 回答