Bonjour,

Voici une code source, dont la source est : l'art du développement Android chez Pearson. Bon je ne ferai pas de critique sur le livre ici.
Voici le code d'un des exemple j'espère que je peu le mettre malgres tout pour avoir quelques explications ( j'aurai pu le modifier pour cacher sa provenance mais je sollicite leur agrément vu que leurs explications ne m'ont pas suffi.)

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/***
        Copyright (c) 2008-2009 CommonsWare, LLC
        
        Licensed under the Apache License, Version 2.0 (the "License"); you may
        not use this file except in compliance with the License. You may obtain
        a copy of the License at
                http://www.apache.org/licenses/LICENSE-2.0
        Unless required by applicable law or agreed to in writing, software
        distributed under the License is distributed on an "AS IS" BASIS,
        WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        See the License for the specific language governing permissions and
        limitations under the License.
*/
 
package com.commonsware.android.fancylists.five;
 
import android.view.View;
import android.widget.ImageView;
import android.widget.TextView;
 
class ViewWrapper {
	View base;
	TextView label=null;
	ImageView icon=null;
 
	ViewWrapper(View base) {
		this.base=base;
	}
 
	TextView getLabel() {
		if (label==null) {
			label=(TextView)base.findViewById(R.id.label);
		}
 
		return(label);
	}
 
	ImageView getIcon() {
		if (icon==null) {
			icon=(ImageView)base.findViewById(R.id.icon);
		}
 
		return(icon);
	}
}
ainsi que le code :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
//***
    Copyright (c) 2008-2009 CommonsWare, LLC
 
    Licensed under the Apache License, Version 2.0 (the "License"); you may
    not use this file except in compliance with the License. You may obtain
    a copy of the License at
        http://www.apache.org/licenses/LICENSE-2.0
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/
 
package com.commonsware.android.fancylists.five;
 
import android.app.Activity;
import android.os.Bundle;
import android.app.ListActivity;
import android.view.View;
import android.view.ViewGroup;
import android.view.LayoutInflater;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.ImageView;
import android.widget.ListView;
import android.widget.TextView;
 
public class ViewWrapperDemo extends ListActivity {
    TextView selection;
    String[] items={"lorem", "ipsum", "dolor", "sit", "amet",
                    "consectetuer", "adipiscing", "elit", "morbi", "vel",
                    "ligula", "vitae", "arcu", "aliquet", "mollis",
                    "etiam", "vel", "erat", "placerat", "ante",
                    "porttitor", "sodales", "pellentesque", "augue",
                    "purus"};
 
    @Override
    public void onCreate(Bundle icicle) {
        super.onCreate(icicle);
        setContentView(R.layout.main);
        setListAdapter(new IconicAdapter());
        selection=(TextView)findViewById(R.id.selection);
    }
 
    private String getModel(int position) {
        return(((IconicAdapter)getListAdapter()).getItem(position));
    }
 
    public void onListItemClick(ListView parent, View v,
                                                            int position, long id) {
         selection.setText(getModel(position));
    }
 
    class IconicAdapter extends ArrayAdapter<String> {
        IconicAdapter() {
            super(ViewWrapperDemo.this, R.layout.row, items);
        }
 
        public View getView(int position, View convertView,
                                                ViewGroup parent) {
            View row=convertView;
            ViewWrapper wrapper=null;
 
            if (row==null) {                                                    
                LayoutInflater inflater=getLayoutInflater();
 
                row=inflater.inflate(R.layout.row, parent, false);
                wrapper=new ViewWrapper(row);
                row.setTag(wrapper);
            }
            else {
                wrapper=(ViewWrapper)row.getTag();
            }
 
            wrapper.getLabel().setText(getModel(position));
 
            if (getModel(position).length()>4) {
                wrapper.getIcon().setImageResource(R.drawable.delete);
            }    
            else {
                wrapper.getIcon().setImageResource(R.drawable.ok);
            }
 
            return(row);
        }
    }
}
question : je ne comprends pas le fonctionnement de ce programme pourtant basique. J'ai lu la doc sur les tags. Mais ne saisis pas le wrapper. contient-il plusieurs tags d'objets de même type ou seulement un des cas possible? Où sont stocker ces infos s'il existe plusieurs instances?

la j'ai du raté quelque chose si quelqu'un peu m'aider pour cette énigme. Merci d'avance.