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" />
これを修正する方法は?