ListView.addHeaderView有bug吗?

时间:2013-01-22 11:29:41

标签: android android-listview

我添加到myListView标题TextView并在onItemClickListener位置向上移动,标题变为可点击(他的位置现在为1),列表的项目位置+1为什么?

Code.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" />

如何解决这个问题?

2 个答案:

答案 0 :(得分:4)

答案 1 :(得分:0)

onClickListener()中忽略click的位置是否为0.只需输入:

if (position > 0) {
    // your operations
}