web-dev-qa-db-fra.com

Comment ajouter une image dans la liste extensible du parent à Android?

Et est-il possible de personnaliser l'enfant dans une liste extensible?

23
Raj

Travailler avec SimpleExpandableListAdapter est tout sauf simple. Voici un certain code qui devrait vous aider à démarrer, en supposant que vous utilisiez ExpandableListActivity.

Dans cet exemple, nous utilisons la norme Android.R.layout.simple_expandable_list_item_1 Pour notre vue sur l'en-tête de groupe, mais nous utilisons notre propre mise en page personnalisée pour les enfants.

    // Construct Expandable List
    final String NAME = "name";
    final String IMAGE = "image";
    final LayoutInflater layoutInflater = (LayoutInflater) this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    final ArrayList<HashMap<String, String>> headerData = new ArrayList<HashMap<String, String>>();

    final HashMap<String, String> group1 = new HashMap<String, String>();
    group1.put(NAME, "Group 1");
    headerData.add( group1 );

    final HashMap<String, String> group2 = new HashMap<String, String>();
    group2.put(NAME, "Group 2");
    headerData.add( group2);


    final ArrayList<ArrayList<HashMap<String, Object>>> childData = new ArrayList<ArrayList<HashMap<String, Object>>>();

    final ArrayList<HashMap<String, Object>> group1data = new ArrayList<HashMap<String, Object>>();
    childData.add(group1data);

    final ArrayList<HashMap<String, Object>> group2data = new ArrayList<HashMap<String, Object>>();
    childData.add(group2data);


    // Set up some sample data in both groups
    for( int i=0; i<10; ++i) {
        final HashMap<String, Object> map = new HashMap<String,Object>();
        map.put(NAME, "Child " + i );
        map.put(IMAGE, getResources().getDrawable(R.drawable.icon));
        ( i%2==0 ? group1data : group2data ).add(map);
    }

    setListAdapter( new SimpleExpandableListAdapter(
            this,
            headerData,
            Android.R.layout.simple_expandable_list_item_1,
            new String[] { NAME },            // the name of the field data
            new int[] { Android.R.id.text1 }, // the text field to populate with the field data
            childData,
            0,
            null,
            new int[] {}
        ) {
            @Override
            public View getChildView(int groupPosition, int childPosition, boolean isLastChild, View convertView, ViewGroup parent) {
                final View v = super.getChildView(groupPosition, childPosition, isLastChild, convertView, parent);

                // Populate your custom view here
                ((TextView)v.findViewById(R.id.name)).setText( (String) ((Map<String,Object>)getChild(groupPosition, childPosition)).get(NAME) );
                ((ImageView)v.findViewById(R.id.image)).setImageDrawable( (Drawable) ((Map<String,Object>)getChild(groupPosition, childPosition)).get(IMAGE) );

                return v;
            }

            @Override
            public View newChildView(boolean isLastChild, ViewGroup parent) {
                 return layoutInflater.inflate(R.layout.expandable_list_item_with_image, null, false);
            }
        }
    );

Et à l'intérieur de votre mise en page personnalisée, nommée expandable_list_item_with_image.xml:

<?xml version="1.0" encoding="UTF-8"?>
<RelativeLayout
    xmlns:Android="http://schemas.Android.com/apk/res/Android"
    Android:layout_width="fill_parent"
    Android:layout_height="wrap_content">

    <ImageView
        Android:id="@+id/image"
        Android:layout_width="wrap_content"
        Android:layout_height="wrap_content" />

    <TextView
        Android:id="@+id/name"
        Android:layout_width="wrap_content"
        Android:layout_height="wrap_content"
        Android:layout_gravity="right" />

</RelativeLayout>
76
emmby

Vous pouvez essayer de créer votre propre adaptateur de liste qui étend BASEEXPANDABLELISTABAPIDEMISTER, comme décrit dans Documentation .

Ensuite, remplacez getGroupView(..) (pour l'élément parent ou getchildView pour l'élément enfant) et dans cette fonction, vous pouvez gonfler votre propre mise en page XML.

quelque chose comme ça:

public View getGroupView(int groupPosition, boolean isExpanded, View convertView,
            ViewGroup parent) 
        {
            View v = convertView;
            if (v == null) {
    //sender is activity from where you call this adapter. Set it with construktor.
                LayoutInflater vi = (LayoutInflater)sender.getSystemService(Context.LAYOUT_INFLATER_SERVICE); 
                v = vi.inflate(R.layout.row, null);
            }
//children = arraylists of Child 
            Child c = children.get(childPosition);
            if (c != null) {
                    TextView tt = (TextView) v.findViewById(R.id.toptext);
                    TextView bt = (TextView) v.findViewById(R.id.bottomtext);
                    ImageView icon = (ImageView) v.findViewById(R.id.rowicon);
                    if (tt != null) {
                          tt.setText(c.text1);                            }
                    if(bt != null){
                          bt.setText(c.text2);
                    }
                    if (icon != null) 
                    {
                        icon.setImageResource(R.drawable.rowicon);
                    }
            }
            return v;
        }

layout 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="?android:attr/listPreferredItemHeight"
    Android:padding="6dip">
    <ImageView
        Android:id="@+id/rowicon"
        Android:layout_width="wrap_content"
        Android:layout_height="fill_parent"
        Android:layout_marginRight="6dip" />
    <LinearLayout
        Android:orientation="vertical"
        Android:layout_width="0dip"
        Android:layout_weight="1"
        Android:layout_height="fill_parent">
        <TextView
            Android:id="@+id/toptext"
            Android:layout_width="fill_parent"
            Android:layout_height="0dip"
            Android:layout_weight="1"
            Android:gravity="center_vertical"
        />
        <TextView
            Android:layout_width="fill_parent"
            Android:layout_height="0dip"
            Android:layout_weight="1" 
            Android:id="@+id/bottomtext"
            Android:singleLine="true"
            Android:ellipsize="Marquee"
        />
    </LinearLayout>
</LinearLayout>
6
Tine M.

Après avoir remplacé GetgroupView, vous pouvez utiliser setCompoundDrawablesWithIntrinsicBounds fonction pour ajouter une image.

@Override
public View getGroupView(int groupPosition, boolean isExpanded, View convertView, ViewGroup parent) 
{
  View v = super.getGroupView(groupPosition, isExpanded, convertView, parent);
  TextView tv = (TextView) v.findViewById(R.id.textViewId);

  tv.setCompoundDrawablesWithIntrinsicBounds(R.drawable.imageToAdd, 0, 0, 0);

  return v;
}
1
penguru

Je viens de trouver une meilleure façon, vous pouvez simplement ajouter

Android:drawableRight="@drawable/icon" Ligne to Layout Fichier XML de groupe de liste.

1
penguru

Essayez ceci >>> tutoriel

Et vous pouvez le mettre à jour pour ajouter une image au lieu de texte dans le fichier XML enfantine.

0
Amt87