ListView去除header触摸时的阴影效果

来源:互联网 发布:什么数据库好用 编辑:程序博客网 时间:2024/04/28 20:18

在header的根布局设置以下属性:

header_for_listview.xml

<LinearLayout    xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="match_parent"    android:layout_height="wrap_content"    android:orientation="vertical"    //这句    android:background="@color/white"    >    ...

去除ListView的item触摸时有阴影效果也是一样,设置item的根布局为白色:

item_for_listview.xml

android:background="@color/white"
1 0
原创粉丝点击