2

アイテムの上部にボタンを追加したいのですが、ベース アダプターでの実装方法がよくわかりません。

問題は、更新ボタンを作成するために 2 つのリストの上に単純なボタンを実装することですが、この静的ボタンをどこに挿入するかはよくわかりません。

ここに私の活動があります:

public class ListSample_category3 extends Activity 
{

    public final static String ITEM_TITLE = "title";
    public final static String ITEM_COMPANY= "company";
    public final static String ITEM_DATE = "availabledate";

    public Map<String,?> createItem(String title, String company, String date) 
    {
        Map<String,String> item = new HashMap<String,String>();
        item.put(ITEM_TITLE, title);
        item.put(ITEM_COMPANY, company);
        item.put(ITEM_DATE, date);
        return item;
    }

    @Override
    public void onCreate(Bundle bundle) 
    {
        super.onCreate(bundle);

        List<Map<String,?>> security = new LinkedList<Map<String,?>>();
        security.add(createItem("Remember passwords", "Cisco", "2012-02-10"));
        security.add(createItem("Clear passwords", "Microsoft", "2012-02-10"));
        security.add(createItem("Show security warnings", "Apple", "2012-02-10"));

        // create our list and custom adapter
        SeparatedListAdapter adapter = new SeparatedListAdapter(this);

        adapter.addSection("Categorie 1", new ArrayAdapter<String>(this,
            R.layout.list_item_category3, new String[] { "First item", "Item two" }));

        adapter.addSection("Categorie 2", new SimpleAdapter(this, security, R.layout.list_complex_category3, 
            new String[] { ITEM_TITLE, ITEM_COMPANY, ITEM_DATE }, new int[] { R.id.list_complex_title, R.id.list_complex_company, R.id.list_complex_date }));

        ListView list = new ListView(this);
        list.setAdapter(adapter);
        this.setContentView(list);

    }
}

マイ BaseAdapter

public class SeparatedListAdapter extends BaseAdapter 
{
    public final Map<String,Adapter> sections = new LinkedHashMap<String,Adapter>();
    public final ArrayAdapter<String> headers;
    public final static int TYPE_SECTION_HEADER = 0;

    public SeparatedListAdapter(Context context) 
    {
        headers = new ArrayAdapter<String>(context, R.layout.list_header_category3);
    }

    public void addSection(String section, Adapter adapter) 
    {
        this.headers.add(section);
        this.sections.put(section, adapter);
    }

    public Object getItem(int position) 
    {
        for(Object section : this.sections.keySet()) 
        {
            Adapter adapter = sections.get(section);
            int size = adapter.getCount() + 1;

            // check if position inside this section 
            if(position == 0) return section;
            if(position < size) return adapter.getItem(position - 1);

            // otherwise jump into next section
            position -= size;
        }
        return null;
    }

    public int getCount() 
    {
        // total together all sections, plus one for each section header
        int total = 0;
        for(Adapter adapter : this.sections.values())
            total += adapter.getCount() + 1;
        return total;
    }

    public int getViewTypeCount() 
    {
        // assume that headers count as one, then total all sections
        int total = 1;
        for(Adapter adapter : this.sections.values())
            total += adapter.getViewTypeCount();
        return total;
    }

    public int getItemViewType(int position) 
    {
        int type = 1;
        for(Object section : this.sections.keySet()) 
        {
            Adapter adapter = sections.get(section);
            int size = adapter.getCount() + 1;

            // check if position inside this section 
            if(position == 0) return TYPE_SECTION_HEADER;
            if(position < size) return type + adapter.getItemViewType(position - 1);

            // otherwise jump into next section
            position -= size;
            type += 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 sectionnum = 0;
        for(Object section : this.sections.keySet()) {
            Adapter adapter = sections.get(section);
            int size = adapter.getCount() + 1;

            // check if position inside this section 
            if(position == 0) return headers.getView(sectionnum, convertView, parent);
            if(position < size) return adapter.getView(position - 1, convertView, parent);

            // otherwise jump into next section
            position -= size;
            sectionnum++;
        }
        return null;
    }

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

私の3つのxmlファイル:

<!-- list_header.xml -->
<TextView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/list_header_title"
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content"
    android:paddingTop="2dip"
    android:paddingBottom="2dip"
    android:paddingLeft="5dip"
    style="?android:attr/listSeparatorTextViewStyle" />


<!-- list_item.xml -->
<TextView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/list_item_title"
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent"
    android:paddingTop="10dip"
    android:paddingBottom="10dip"
    android:paddingLeft="15dip"
    android:textAppearance="?android:attr/textAppearanceLarge"
    />

<!-- list_complex.xml -->
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:paddingTop="10dip"
    android:paddingBottom="10dip"
    android:paddingLeft="15dip"
    >
    <TextView
        android:id="@+id/list_complex_title"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:textAppearance="?android:attr/textAppearanceLarge"
        />
    <TextView
        android:id="@+id/list_complex_caption"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:textAppearance="?android:attr/textAppearanceSmall"
        />
</LinearLayout>

このコードから、テキストビューが先頭にある2つのリストがあります。問題は、2つのリストの上にシンプルなボタンを実装して更新(ボタン)を作成することですが、この方法を使用すると、この静的な場所を挿入する場所が本当にわかりませんボタン

編集 :

そのような他のxmlファイルを作成しようとしました:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical">
    <ListView
        android:id="@+id/listpromo"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"/>
</LinearLayout>

そして私は自分の活動を次のように変更しました:

public class ListSample_category3 extends Activity 
{

    public final static String ITEM_TITLE = "title";
    public final static String ITEM_COMPANY= "company";
    public final static String ITEM_DATE = "availabledate";
    private ListView list;

    public Map<String,?> createItem(String title, String company, String date) 
    {
        Map<String,String> item = new HashMap<String,String>();
        item.put(ITEM_TITLE, title);
        item.put(ITEM_COMPANY, company);
        item.put(ITEM_DATE, date);
        return item;
    }

    @Override
    public void onCreate(Bundle bundle) 
    {
        super.onCreate(bundle);

        List<Map<String,?>> security = new LinkedList<Map<String,?>>();
        security.add(createItem("Remember passwords", "Cisco", "2012-02-10"));
        security.add(createItem("Clear passwords", "Microsoft", "2012-02-10"));
        security.add(createItem("Show security warnings", "Apple", "2012-02-10"));

        // create our list and custom adapter
        SeparatedListAdapter adapter = new SeparatedListAdapter(this);

        adapter.addSection("Categorie 1", new ArrayAdapter<String>(this,
            R.layout.list_item_category3, new String[] { "First item", "Item two" }));

        adapter.addSection("Categorie 2", new SimpleAdapter(this, security, R.layout.list_complex_category3, 
            new String[] { ITEM_TITLE, ITEM_COMPANY, ITEM_DATE }, new int[] { R.id.list_complex_title, R.id.list_complex_company, R.id.list_complex_date }));

        // create ListView
        //ListView list = new ListView(this);
        list = (ListView) findViewById(R.id.listpromo);

        // OnItemClickListener on all items
        OnItemClickListener listener = new OnItemClickListener()
        {
              public void onItemClick(AdapterView<?> parent, View view, int position, long id)
              {

              }
        };
        list.setOnItemClickListener(listener);
        list.setItemsCanFocus(true);

        list.setAdapter(adapter);
        this.setContentView(list);

    }
}

しかし、私は NullPointerException を持っています:

08-05 14:49:24.875: E/AndroidRuntime(2558): 致命的な例外: メイン 08-05 14:49:24.875: E/AndroidRuntime(2558): java.lang.RuntimeException: アクティビティ ComponentInfo{com を開始できません。 dev.prixo/com.dev.prixo.OngletsActivity}: java.lang.RuntimeException: アクティビティ ComponentInfo を開始できません {com.dev.prixo/com.dev.prixo.ListSample_category3}: java.lang.NullPointerException 08-05 14: 49:24.875: E/AndroidRuntime(2558): android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1651) 08-05 14:49:24.875: E/AndroidRuntime(2558): android.app.ActivityThread.handleLaunchActivity で(ActivityThread.java:1667) 08-05 14:49:24.875: E/AndroidRuntime(2558): android.app.ActivityThread.access$1500(ActivityThread.java:117) 08-05 14:49:24.875: E/ AndroidRuntime(2558): android.app.ActivityThread$H.handleMessage(ActivityThread.java:935) 08-05 14:49:24.875: E/AndroidRuntime(2558): android.os.Handler.dispatchMessage(Handler.java:99) 08-05 14:49:24.875: E/AndroidRuntime(2558): でandroid.os.Looper.loop(Looper.java:130) 08-05 14:49:24.875: E/AndroidRuntime(2558): 原因: java.lang.RuntimeException: Unable to start activity ComponentInfo{com.dev.prixo /com.dev.prixo.ListSample_category3}: java.lang.NullPointerException

やり方教えてください..

4

2 に答える 2

2

あなたのデザインに基づいて、あなたの問題は ListView オブジェクトに従って contentView を設定していることです:

ListView list = new ListView(this);
list.setAdapter(adapter);
this.setContentView(list);

これは特異なオブジェクトであり、それを変更してその特定のアクティビティの内容を変更したい場合、明らかに問題を引き起こします。

私のおすすめ

contentView 内で設定できるレイアウト xml ファイルを作成する必要があります。具体的には、この xml には以下が含まれます。

Linearlayout<- orientation:veritcal
 <Button>
 <Listview>
 <Listview>
->

このレイアウトは setContentView で使用され、ボタンを取得してコードを構成し、ListView を更新できるようにします。または、オプション メニューに追加することもできます。

于 2012-08-04T14:34:38.813 に答える
0
enter code here
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<Button 
    android:id="@+id/refresh"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"/>
<ListView
    android:id="@+id/listpromo"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"/>

 </LinearLayout>

アクティビティでの更新コードの実装を開始します。

enter code here
Button refresh= (Button)findviewById(R.id.refresh);
refresh.setOnClickListener(new OnClickListener() {
        @Override
        public void onClick(View v) {
            // TODO Auto-generated method stub

                       //Implement the List Adapter Code here to refresh the Content.
        }
    } );
于 2012-09-20T10:45:46.630 に答える