ListView添加HeaderView后,HeaderView里的控件设置某些属性不起作用

在Android开发中,当为ListView添加HeaderView时,可能会遇到一个问题:HeaderView中的控件设置的一些属性不生效。例如,文字颜色、背景色改变等操作在运行时无法正常显示。这通常是由于ListView复用机制导致的,需要通过特定方式确保每个列表项的初始化正确处理Header的样式设置。本文将探讨这个问题的原因,并提供解决方案。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

   

当我们为listview,add一个headerView时,headerview里有好多控件,例如:

 <RelativeLayout
        android:id="@+id/rl_apply_content"
        android:layout_width="match_parent"
        android:layout_height="350dp"
        android:background="@drawable/live_apply">

        <ImageView
            android:id="@+id/shader"
            android:layout_width="match_parent"
            android:layout_height="150dp"
            android:layout_alignParentBottom="true"
            android:background="@drawable/video_bottom_height448" />

        <ImageView
            android:id="@+id/iv_apply"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_alignTop="@+id/shader"
            android:layout_centerHorizontal="true"
            android:src="@drawable/apply" />
    </RelativeLayout>
第二个ImageView如果设置marginBottom,会不起作用,此时我们要把布局改成下面这样:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <RelativeLayout
        android:id="@+id/rl_apply_content"
        android:layout_width="match_parent"
        android:layout_height="350dp"
        android:background="@drawable/live_apply">

        <ImageView
            android:id="@+id/shader"
            android:layout_width="match_parent"
            android:layout_height="150dp"
            android:layout_alignParentBottom="true"
            android:background="@drawable/video_bottom_height448" />

        <ImageView
            android:id="@+id/iv_apply"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_alignTop="@+id/shader"
            android:layout_centerHorizontal="true"
            android:src="@drawable/apply" />
    </RelativeLayout>

</RelativeLayout>
搞定


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值