アダプターが初めてリストビューに設定された場合でも、 getView()がリサイクルを開始するという問題に直面しています。初めて 5 つのアイテムが表示され、リストビューの高さを定数で設定する必要があるためです。値( fill_parentに変更しようとしましたが、効果はありませんでしたが)検索したところ、これが私の問題リンクと同じであることがわかりました!私はそれを徹底的に読んで、この種の問題はリストビューの高さをwrap_contentに設定してはならないためであることを知りました。
I/System.out(17411): getview 0 null
I/System.out(17411): getview 1 android.widget.RelativeLayout@40574ce0
I/System.out(17411): getview 2 android.widget.RelativeLayout@40574ce0
I/System.out(17411): getview 3 android.widget.RelativeLayout@40574ce0
I/System.out(17411): getview 4 android.widget.RelativeLayout@40574ce0
I/System.out(17411): getview 5 android.widget.RelativeLayout@40574ce0
I/System.out(17411): getview 0 android.widget.RelativeLayout@40574ce0
I/System.out(17411): getview 1 null
I/System.out(17411): getview 2 null
I/System.out(17411): getview 3 null
I/System.out(17411): getview 4 null
アダプターが初めて設定されたとき (スクロールさえしませんでしたが、それでもリサイクルは理由がわかりません) ここに私のレイアウトがあります
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/newDramaLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@drawable/background" >
<RelativeLayout
android:id="@+id/header"
android:layout_width="match_parent"
android:layout_height="50dp"
android:visibility="gone"
android:background="@drawable/header">
<Button
android:id="@+id/refreshBt"
android:layout_width="55dp"
android:layout_height="50dp"
android:onClick="refresh"
android:layout_alignParentRight="true"
android:background="@drawable/refresh"/>
</RelativeLayout>
<LinearLayout
android:id="@+id/info"
android:layout_width="match_parent"
android:layout_height="30dp"
android:visibility="gone"
android:gravity="center_horizontal"
android:layout_below="@+id/header"
android:background="@drawable/information"
android:paddingLeft="10dp" >
<TextView
android:id="@+id/label"
android:layout_width="wrap_content"
android:layout_marginBottom="5dp"
android:layout_height="wrap_content"
android:text="@string/label"
android:textColor="@android:color/secondary_text_dark" />
</LinearLayout>
<ListView
android:id="@+id/newDramasList"
android:layout_below="@+id/info"
android:cacheColorHint="#00000000"
android:layout_width="match_parent"
android:layout_centerInParent="true"
android:dividerHeight="5dp"
android:divider="@android:color/transparent"
android:layout_height="320dp"
android:visibility="gone">
</ListView>
<ProgressBar
android:id="@+id/progressBar1"
style="?android:attr/progressBarStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:visibility="gone"
android:layout_centerInParent="true" />
<LinearLayout
android:id="@+id/footer"
android:layout_below="@+id/newDramasList"
android:layout_width="match_parent"
android:layout_height="50dp"
android:visibility="gone"
android:background="@drawable/footer"/>
</RelativeLayout>
高さをfill_parentにしようとしたリストビューですが、問題はまだ修正されていません。ここに私のコードがあります
$@Override
public View getView(final int position, View convertView, ViewGroup parent)
{
System.out.println("getview "+position+" "+convertView);
View row=convertView;
if(row==null)
{
LayoutInflater inflater=((Activity)context).getLayoutInflater();
row=inflater.inflate(layoutResourceId, parent,false);
holder=new NewDramas();
holder.ivIcon=(ImageView)row.findViewById(R.id.dramaIcon);
holder.tvDramaName=(TextView)row.findViewById(R.id.dramaTitle);
holder.tvDate=(TextView)row.findViewById(R.id.date);
row.setTag(holder);
}
else
{
holder=(NewDramas)row.getTag();
}
holder.ivIcon.setImageResource(R.drawable.new_drama_icon);
holder.tvDramaName.setText(dramaList.get(position).getDramaName());
holder.tvDate.setText(dramaList.get(position).getDate());
return row;
}
これが膨らんだレイアウトです
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="280dp"
android:layout_height="70dp"
android:orientation="vertical"
android:background="@drawable/new_dramas_list_back" >
<ImageView
android:id="@+id/dramaIcon"
android:layout_width="50dp"
android:layout_height="45dp"
android:src="@drawable/favorite_icon"/>
<Button
android:id="@+id/fav"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/dramaIcon"
android:visibility="gone"
android:focusable="false"
android:layout_alignRight="@+id/dramaIcon"
android:background="@drawable/heart"
/>
<TextView
android:id="@+id/dramaTitle"
android:layout_toRightOf="@+id/dramaIcon"
android:layout_alignTop="@+id/dramaIcon"
android:layout_width="wrap_content"
android:width="150dp"
android:paddingTop="5dp"
android:textColor="@android:color/white"
android:ellipsize="end"
android:layout_marginLeft="32dp"
android:layout_height="wrap_content"
android:text="title"
android:textStyle="bold" />
<LinearLayout
android:id="@+id/updateDate"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_below="@+id/dramaIcon"
android:layout_alignParentRight="true"
android:layout_marginTop="2dp" >
<TextView
android:id="@+id/updated"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="updated:"
android:textColor="#ffff00"
android:layout_alignBottom="@+id/dramaIcon"/>
<TextView
android:id="@+id/date"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#ffff00"
android:layout_marginLeft="1dp"
android:text="12/08/2102" />
</LinearLayout>
</RelativeLayout>
リストビューにフッタービューとしてボタンも追加しましたか? これがこの奇妙な動作の理由ではないことを願っています.logcatでgetview 1の相対IDが5回繰り返されていることに気づきました.これは、リストビューの位置1に問題があることを意味します.
誰でもこの奇妙な振る舞いを理解するのを手伝ってくれませんか、事前に感謝します。