0

同じレイアウト、つまりmain.xmlに3つの異なるExpandableListを含めることはできますか?もしそうなら、android:listの観点からそれらを異なる方法で使用できますか?

同じレイアウトに3つの個別のexpandableListを実装する必要があるという要件があります。できますか?

4

1 に答える 1

0

はい、できます。単純に異なるIDを使用する方が、android:listよりも簡単だと思います。しかし、それぞれの下に3つのグループ行と1つの子行のグループがある拡張可能なリストを実現しようとしていますか?これらが接続され、シームレスに見えるように?もしそうなら、あなたは1つの拡張可能なリストでそれを行うことができます。ただのfyi。それがあなたの意図であった場合、それがどのように行われるかを示すサンプルコードを入手します。それは超簡単。

編集:このエラーが発生する理由は、おそらく、expandablelistactivityクラスを使用しようとしているためです。このクラスは、(実際には)アクティビティに展開可能なリストが1つしかないことを前提としています。通常のアクティビティクラスを使用する必要があります。これが私がテストして動作したものです。

package com.mango.stackoverflow;

import android.os.Bundle;
import android.app.Activity;
import android.view.Gravity;
import android.view.Menu;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AbsListView;
import android.widget.BaseExpandableListAdapter;
import android.widget.ExpandableListView;
import android.widget.TextView;

public class MainActivity extends Activity {

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        ExpandableListView TestExpandListView1 = (ExpandableListView) findViewById(R.id.expandableListView1);
        ExpandableListView TestExpandListView2 = (ExpandableListView) findViewById(R.id.expandableListView2);
        ExpandableListView TestExpandListView3 = (ExpandableListView) findViewById(R.id.expandableListView3);
        TestExpandableListAdapter TestExpandAdapter = new TestExpandableListAdapter();
        TestExpandListView1.setAdapter(TestExpandAdapter);
        TestExpandListView2.setAdapter(TestExpandAdapter);
        TestExpandListView3.setAdapter(TestExpandAdapter);
    }


    public class TestExpandableListAdapter extends BaseExpandableListAdapter {

        private String[] groups = { "People Names -- 1st GROUP", "Dog Names", "Cat Names", "Fish Names" };
        private String[][] children = {
                { "Arnold", "Barry", "Chuck", "David" },
                { "Ace", "Bandit", "Cha-Cha", "Deuce" },
                { "Fluffy", "Snuggles" },
                { "Goldy", "Bubbles" }
        };

        public Object getChild(int groupPosition, int childPosition) {
            return children[groupPosition][childPosition];
        }

        public long getChildId(int groupPosition, int childPosition) {
            return childPosition;
        }

        public int getChildrenCount(int groupPosition) {
            return children[groupPosition].length;
        }

        public TextView getGenericView() {
            // Layout parameters for the ExpandableListView
            AbsListView.LayoutParams lp = new AbsListView.LayoutParams(
                    ViewGroup.LayoutParams.MATCH_PARENT, 64);

            TextView textView = new TextView(MainActivity.this);
            textView.setLayoutParams(lp);
            // Center the text vertically
            textView.setGravity(Gravity.CENTER_VERTICAL | Gravity.LEFT);
            // Set the text starting position
            textView.setPadding(36, 0, 0, 0);
            return textView;
        }

        public View getChildView(int groupPosition, int childPosition, boolean isLastChild,
                View convertView, ViewGroup parent) {
            TextView textView = getGenericView();
            textView.setText(getChild(groupPosition, childPosition).toString());
            return textView;
        }

        public Object getGroup(int groupPosition) {
            return groups[groupPosition];
        }

        public int getGroupCount() {
            return groups.length;
        }

        public long getGroupId(int groupPosition) {
            return groupPosition;
        }

        public View getGroupView(int groupPosition, boolean isExpanded, View convertView,
                ViewGroup parent) {
            TextView textView = getGenericView();
            textView.setText(getGroup(groupPosition).toString());
            return textView;
        }

        public boolean isChildSelectable(int groupPosition, int childPosition) {
            return true;
        }

        public boolean hasStableIds() {
            return true;
        }

    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        getMenuInflater().inflate(R.menu.activity_main, menu);
        return true;
    }
}

idのインスタンス化について明確になっていない場合に備えて、xmlも投稿しています(注意してください-速度のためにxmlのlayout_heightに「wrap_content」を使用しましたが、これは間違いなくベストではありません拡張可能なリストビューまたは任意のリストビューに対してこれを行うためのプラクティスでは、他の選択肢よりもはるかに多くのリソースを使用します):

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <ExpandableListView
        android:id="@+id/expandableListView1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true" >
    </ExpandableListView>

        <ExpandableListView
        android:id="@+id/expandableListView2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/expandableListView1" >
    </ExpandableListView>

                <ExpandableListView
        android:id="@+id/expandableListView3"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/expandableListView2" >
    </ExpandableListView>


</RelativeLayout>

そしてここに写真があります

エミュレーターの結果

  • それが投稿されたので、私はあなたにあなたのコードを行う方法を教えたくはありませんが、あなたと同じレベルにするだけです。1つのアクティビティでこれほど多くの拡張可能なリストビューを使用することは、特にビューを膨らませている場合は、最も...エレガントな実装にはなりません。あなたが何をしようとしているのかわかりませんが、私のように接続する場合、または垂直パネルだけで接続する場合は、1つだけで実行でき、はるかに効率的です。
于 2012-10-08T05:55:01.347 に答える