6

ListView作業要求のヘッダーとしてプロジェクト名を追加したいので、カスタムアダプターがあります。単一のヘッダーを追加することは問題なく機能しますが、を使用して複数のヘッダーを追加する方法がわかりませんaddHeaderView。正確にどこに配置するのかわかりませんsetAdapterか、それとも複数回配置することになっていますか?

これは、機能する単一ヘッダーのJavaコードです。

mListView = (ListView)findViewById(R.id.dashboardList);
View header1 =  getLayoutInflater().inflate(R.layout.listview_header, null, false);
tv = (TextView) header1.findViewById(R.id.listHeader);
adapter = new MyCustomAdapter(MyDashboardActivity.this, R.layout.mydashboard_row, dashboardBean);
tv.setText("Project 1");
mListView.addHeaderView(header1, null, false);
for (int i=0; i < 7; i++) {
     dashboardBean.add(new DashboardBean(workRequests[i],status[i],actualHours[i]));
}
mListView.setAdapter(adapter);

今、私はこれを試した2つのヘッダーについて:

mListView = (ListView)findViewById(R.id.dashboardList);
View header1 =  getLayoutInflater().inflate(R.layout.listview_header, null, false);
tv = (TextView) header1.findViewById(R.id.listHeader);
adapter = new MyCustomAdapter(MyDashboardActivity.this, R.layout.mydashboard_row, dashboardBean);
tv.setText("RxOffice");
mListView.addHeaderView(header1, null, false);
for (int i=0; i < 4; i++) {
     dashboardBean.add(new DashboardBean(workRequests[i],status[i],actualHours[i])); 
}

tv.setText(Project 2");

mListView.addHeaderView(header1, null, false);
for (int i=4; i < workRequests.length; i++) {
     dashboardBean.add(new DashboardBean(workRequests[i],status[i],actualHours[i]));
}
mListView.setAdapter(adapter);

しかし、これは機能しません!Project2ヘッダーとその下の7つのエントリすべてのみが表示されます。誰かが何が悪いのか教えてもらえますか?と関係があると思いますsetAdapter。ありがとう!

4

3 に答える 3

11

私はあなたがやりたいことはあなたがそれをやろうとしている方法で可能であるとは思いません。使用するaddHeaderViewと、でラップListAdapterされますHeaderViewListAdapter私はここでそれについてのドキュメントを見ました、そしてそれはあなたが複数のヘッダーを持つことができることを意味しているようです、しかしそれらはすべて一番上にあるでしょう(ええと、ヘッダー)。

あなたが実際に欲しいのはセパレーターのように聞こえます...

CommonWareのMergeAdapterを使用できます。これにより、アダプターとビューを(任意の順序で)挿入し、それらすべてを単一のアダプターとしてリストビューに表示できます。コンテンツの各セクションのヘッダーとアダプターを渡して、リストに設定するだけです。

擬似コードの例:

myMergeAdapter = new MergeAdapter(); 
myMergeAdapter.addView(HeaderView1); 
myMergeAdapter.addAdapter(listAdapter1); 
myMergeAdapter.addView(HeaderView2); 
myMergeAdapter.addAdapter(listAdapter2); 
setListAdapter(myMergeAdapter); 
于 2012-06-26T04:29:55.290 に答える
2

Section AdapterCommonsWareによって最初にコード化されたカスタムを使用して複数のヘッダーシナリオを実現しました。Books、Gamesなどのlistivew内にセクションを作成できます。以下のコードを確認してください。

セクションアダプタ:

package com.medplan.db;

import java.util.ArrayList;
import java.util.List;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Adapter;
import android.widget.BaseAdapter;




abstract public class SectionedAdapter extends BaseAdapter {

    String TAG = "========SectionedAdapter============";

abstract protected View getHeaderView(String caption,
                                      int index,
                                      View convertView,
                                      ViewGroup parent);

private List<Section> sections=new ArrayList<Section>();
private static int TYPE_SECTION_HEADER=0;

public SectionedAdapter() {
  super();
  sections.clear();


}

public void addSection(String caption, Adapter adapter) {

  sections.add(new Section(caption, adapter));
}


public void clear() {

    sections.clear();
    notifyDataSetChanged();
}


public Object getItem(int position) {
  for (Section section : this.sections) {
    if (position==0) {
      return(section);
    }

    int size=section.adapter.getCount()+1;

    if (position<size) {
      return(section.adapter.getItem(position-1));
    }

    position-=size;
  }

  return(null);
}

public int getCount() {
  int total=0;

  for (Section section : this.sections) {
    total+=section.adapter.getCount()+1; // add one for header
  }

  return(total);
}

public int getViewTypeCount() {
  int total=1;  // one for the header, plus those from sections

  for (Section section : this.sections) {
    total+=section.adapter.getViewTypeCount();
  }

  return(total);
}

public int getItemViewType(int position) {
  int typeOffset=TYPE_SECTION_HEADER+1; // start counting from here

  for (Section section : this.sections) {
    if (position==0) {
      return(TYPE_SECTION_HEADER);
    }

    int size=section.adapter.getCount()+1;

    if (position<size) {
      return(typeOffset+section.adapter.getItemViewType(position-1));
    }

    position-=size;
    typeOffset+=section.adapter.getViewTypeCount();
  }

  return(-1);
}

public boolean areAllItemsSelectable() {
  return(false);
}

public boolean isEnabled(int position) {
  return(getItemViewType(position)!=TYPE_SECTION_HEADER);
}

public View getView(int position, View convertView,
                    ViewGroup parent) {
  int sectionIndex=0;

  for (Section section : this.sections) {
    if (position==0) {
      return(getHeaderView(section.caption, sectionIndex,
                            convertView, parent));
    }

    int size=section.adapter.getCount()+1;

    if (position<size) {
      return(section.adapter.getView(position-1,convertView,parent));
    }

    position-=size;
    sectionIndex++;
  }

  return(null);
}

public long getItemId(int position) {
  return(position);
}

class Section {
  String caption = null;
  Adapter adapter = null;

  Section(String caption, Adapter adapter) {
    this.caption=caption;
    this.adapter=adapter;
  }
}
}

Activity make Sectionアダプタオブジェクト内で、以下のコードを確認してください。

final SectionedAdapter adapter =new SectionedAdapter()
                {

                      protected View getHeaderView(String caption, int index, View convertView,ViewGroup parent) 
                      {

                        result=(TextView)convertView;

                        if (convertView==null) 
                        {
                          result=(TextView)getLayoutInflater().inflate(R.layout.section_header,null);

                        }

                        result.setText(caption);
                       // temp=caption;
                       // ind=index;

                        return(result);
                      }
                    };

section_header.xml

<?xml version="1.0" encoding="utf-8"?>

<TextView 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content"  
    android:background="@color/black"
    android:textColor="#FFFFFF"
    android:ellipsize="end"
    android:textSize="11sp"
    style="?android:attr/listSeparatorTextViewStyle" />


<!--    android:background="#515050"-->

アクティビティ内に、以下のように必要な数のセクションを追加します。

注:userPicとmedPicはarraylistの名前です。

adapter.addSection("section first", new EfficientAdapter(getApplicationContext(),usersPic)); 


adapter.addSection("section second", new EfficientAdapter(getApplicationContext(),medPic));

listview.setAdapter(adapter);
于 2012-06-26T05:36:22.110 に答える
0

ExpandableListViewでこの問題を解決します。追加のライブラリは必要ありません。

  • カスタムアダプタを作成します。
  • データを提供し、オーバーライドする必要のあるメソッドを入力します。
  • ExpandableListViewを使用してアダプターを設定した後:
    • groupItemClickをオーバーライドして、グループをクリックしても実際にはビューが展開されないようにします。
    • アダプタ内のすべての親をループし、それらを展開して設定します。
于 2015-08-14T13:55:08.993 に答える