0

我添加到 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" />

如何解决这个问题?

4

2 回答 2

4

尝试mMoviesList.addHeaderView(header, null, false)改用。

于 2013-01-22T11:41:55.163 回答
0

如果onClickListener()点击的位置为0,则忽略。只需输入:

if (position > 0) {
    // your operations
}
于 2013-01-22T11:41:12.343 回答