0

カスタム CursorAdapter によって提供される ListView があります。ListView の行は非常に単純です。左側に CheckBox があり、2 つの TextView があります。チェックボックスが「クリック」されると、ユーザーがリストから複数の項目を削除できるようにアクションモードが開始されます。

チェックボックスと OnItemClickedListeners を処理し、どのボックスがチェックされたかを追跡しているときに、bindView が際限なく呼び出されていることに気付きました。そして、私は本当に際限なく意味します。ListView に 1 つまたは 100 のアイテムがある場合、bindView はフラグメントのライフサイクルの間、1 秒間に複数回呼び出されます。ListView は希望どおりに動作するようになりましたが、コードまたは XML レイアウトに明らかに大きな問題があります。

このサイトで回答を検索しても結果が得られなかったので、最初の質問をここに投稿します。

ListView の各行の XML レイアウトは次のようになります。

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     android:layout_width="fill_parent"
     android:layout_height="wrap_content"
     android:orientation="horizontal"
     android:paddingBottom="@dimen/activity_vertical_margin" 
     android:paddingTop="@dimen/activity_vertical_margin"
     android:descendantFocusability="blocksDescendants"    
     >

    <CheckBox android:layout_width="wrap_content" android:layout_height="wrap_content"
      android:focusable="false"
      android:clickable="false"
      android:id ="@+id/chkBox" />
    <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" 
      android:text="Some example text"
      android:layout_weight=".5"
      android:id="@+id/txtExercise" />
    <TextView 
      android:id="@+id/txtDuration"
      android:layout_width="fill_parent" android:layout_height="wrap_content"
      android:text="0:00" android:gravity="right"
      android:layout_weight=".5" >

    </TextView>


     </LinearLayout>

ここに表示する他のコードがわからないので、newView メソッドと bindView メソッドを挿入します。誰かが問題を特定するのに十分な助けになることを願っています。

@Override
public View newView(Context context, Cursor cursor, ViewGroup parent) {     
    final LayoutInflater inflater = LayoutInflater.from(context);
    View v = inflater.inflate(layout, parent, false);
    Log.i(TAG, "newView=" + parent.getId());

    final ViewHolder holder = new ViewHolder();
    holder.txtExercise = (TextView) v.findViewById(R.id.txtExercise);
    holder.txtDuration = (TextView) v.findViewById(R.id.txtDuration);
    holder.check = (CheckBox) v.findViewById(R.id.chkBox);                  
    holder.check.setOnCheckedChangeListener(new OnCheckedChangeListener(){

        @Override
        public void onCheckedChanged(CompoundButton buttonView, boolean checked) {
            checkedList.put((Integer) buttonView.getTag(),checked);             
        }

    });
    v.setTag(holder);       
    return v;
}


@Override
public void bindView(View v, Context arg1, Cursor c) {
    String exercise = c.getString(c.getColumnIndex("_ExcerciseName"));
    int sec = c.getInt(c.getColumnIndex(WorkoutLog.DURATION));
    String duration = returnDurationString(sec);
    Log.i(TAG, "bindview called");
    ViewHolder holder = (ViewHolder) v.getTag();

    if(holder.txtExercise !=null)
        holder.txtExercise.setText(exercise);
    if(holder.txtDuration != null)
        holder.txtDuration.setText(duration);
    if(holder.check !=null) {   
        holder.check.setTag(c.getInt(c.getColumnIndex(WorkoutLog._ID)));
        int x = (Integer) holder.check.getTag();            
        holder.check.setChecked(checkedList.get(x));            
    }
}

アドバイスをいただければ幸いです。私はまだAndroid開発に非常に慣れていないので、おそらく完全にばかげた間違いを犯している可能性がありますが、これを解決しようとする経験や知識がありません.

[編集] - ListView の周囲からタグを削除すると、問題が解決しました!

4

1 に答える 1

3

私はあなたandroid:layout_heightがあなたのlistviewセットを に持っていると仮定していますwrap_content。に切り替えてみてくださいfill_parent

この回答を確認してください: Wrap_Content が BindView を複数回起動する理由

何かのようなもの:

<ListView
        android:id="@+id/my_listView"
        android:layout_width="match_parent"
        android:layout_height="fill_parent"
        //...
</ListView>

この助けを願っています!

于 2013-05-05T11:54:06.473 に答える