其他分享
首页 > 其他分享> > Android:ListView圆角由列表项隐藏

Android:ListView圆角由列表项隐藏

作者:互联网

我有这个Listview元素:

<ListView
android:id="@+id/category_list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:background="@drawable/list_background" 
android:layout_marginTop="10sp" 
android:layout_marginLeft="10sp" 
android:layout_marginRight="10sp"
android:drawSelectorOnTop="false"

android:listSelector="@drawable/list_item_background"           
android:cacheColorHint="#FFFFFF"            

android:clipToPadding="true"
android:focusable="true"
android:focusableInTouchMode="true"     
android:clickable="true"    
android:longClickable="true"

android:footerDividersEnabled="true"
android:headerDividersEnabled="true"
android:dividerHeight="1px"

/>

其中list_background是:

<shape xmlns:android="http://schemas.android.com/apk/res/android">  
    <corners android:radius="10dp" /> 
    <solid android:color="#FFFFFF"/> 
</shape> 

列表视图使用圆角加载自身,但是列表项隐藏了圆角.

我究竟做错了什么?

解决方法:

我已经找到解决问题的方法.

我正在使用android:cacheColorHint设置与ListView背景相同的颜色,这导致在滚动列表时和滚动之后隐藏圆角.

因此,将其设置为“透明”(#0000)解决了该问题!

标签:listview,rounded-corners,android
来源: https://codeday.me/bug/20191105/1996975.html