Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用下面的代码在 listview 的 addHeaderView 方法中添加 viewgroup:
MyViewGroup myvg = new MyViewGroup(this); listView.addHeaderView(myvg, null, false);
但是headerView不能在listview中显示。是可以在listview的addHeaderView方法中添加viewgroup吗?还是不能在addHeaderView中添加viewgroup?</p>
调用 setAdapter 后将显示标题。
从您发布的代码看来,标题是不可见的,因为您添加的视图组是空的。并在添加标题后设置适配器。