我有一个 ListFragment 并且在 ListFragment.onViewCreated 我有这个代码:
super.onViewCreated(view, savedInstanceState);
View header = getActivity().getLayoutInflater().inflate(R.layout.rowheader, null);
this.getListView().addHeaderView(header);
我的布局只有一个 LinearLayout(水平),里面有四个 TextView。
现在我不明白的是,标题接收点击事件,当它被点击时,它还会在标题上显示蓝色覆盖/颜色/事物。那怎么可能,我可以以某种方式禁用它吗?
谢谢索伦_