我添加到 myListView 标题TextView
并且onItemClickListener
位置向上移动,标题变为可点击(他的位置现在为一个),并且列表的项目位置 +1 为什么?
代码.java
View header = getLayoutInflater().inflate(R.layout.header_text, null);
mMoviesList.addHeaderView(header);
header_text.xml
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/_main_shadow"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/after_top_bar_margin_left"
android:layout_marginTop="@dimen/after_top_bar_margin_top"
android:paddingBottom="5px"
android:text="Показывают в кино"
android:textColor="#898989"
android:textSize="12sp" />
如何解决这个问题?