为什么我的标题可以在ListFragment上单击

时间:2012-11-26 14:58:56

标签: android

我有一个ListFragment,在ListFragment.onViewCreated中我有这段代码:

super.onViewCreated(view, savedInstanceState);
View header = getActivity().getLayoutInflater().inflate(R.layout.rowheader, null);
this.getListView().addHeaderView(header);

我的布局只有一个LinearLayout(水平),里面有四个TextView。

现在我不明白的是标​​题会收到点击事件,它还会在点击时在标题上显示蓝色叠加/颜色/事物。怎么可能,我可以以某种方式禁用它吗?

谢谢
索伦

2 个答案:

答案 0 :(得分:1)

使用此

this.getListView().addHeaderView(header, null, false) 

而不是

this.getListView().addHeaderView(header);

答案 1 :(得分:0)

标题视图是什么类型的对象?

您可能希望查看该视图是否有setEnabled()方法,setClickable()setSelectable()。您可以在将标题视图添加到列表视图之前设置它