Bonjour,

Je vois bien comment récupérer individuellement les Id des widgets avec
Code : Sélectionner tout - Visualiser dans une fenêtre à part
findViewById(R.id.monId)
dans le code, mais je n'est pas trouvé le moyen de récupérer une collection d'Id, par layout et par class.

Exemple: Je veux récupérer la liste des Id <ImageButton>
Code XML : 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
<?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" >
 
    <ImageButton
        android:id="@+id/lum_0"
        android:layout_width="80dp"
        android:layout_height="80dp"
        android:scaleType="fitCenter"
        android:layout_marginLeft="50dp" android:layout_marginTop="50dp"
        android:src="@drawable/play_btn" />
 
    <ImageButton
        android:id="@+id/lum_1"
        android:layout_width="80dp"
        android:layout_height="80dp"
        android:layout_marginLeft="300dp"
        android:layout_marginTop="-80dp"
        android:scaleType="fitCenter"
        android:src="@drawable/play_btn" />
 
    <ImageButton
        android:id="@+id/lum_2"
        android:layout_width="80dp"
        android:layout_height="80dp"
        android:layout_marginLeft="180dp"
        android:layout_marginTop="30dp"
        android:scaleType="fitCenter"
        android:src="@drawable/play_btn" />
 
    <ImageButton
        android:id="@+id/lum_3"
        android:layout_width="80dp"
        android:layout_height="80dp"
        android:layout_marginLeft="180dp"
        android:layout_marginTop="30dp"
        android:scaleType="fitCenter"
        android:src="@drawable/play_btn" />
 
    <ImageButton
        android:id="@+id/lum_4"
        android:layout_width="80dp"
        android:layout_height="80dp"
        android:layout_marginLeft="50dp"
        android:layout_marginTop="20dp"
        android:scaleType="fitCenter"
        android:src="@drawable/play_btn" />
 
    <ImageButton
        android:id="@+id/lum_5"
        android:layout_width="80dp"
        android:layout_height="80dp"
        android:layout_marginLeft="300dp"
        android:layout_marginTop="-80dp"
        android:scaleType="fitCenter"
        android:src="@drawable/play_btn" />
 
    <ImageButton
        android:id="@+id/lum_6"
        android:layout_width="80dp"
        android:layout_height="80dp"
        android:layout_marginLeft="180dp"
        android:layout_marginTop="20dp"
        android:scaleType="fitCenter"
        android:src="@drawable/play_btn" />
 
    <ImageButton
        android:id="@+id/lum_7"
        android:layout_width="80dp"
        android:layout_height="80dp"
        android:layout_marginLeft="50dp"
        android:layout_marginTop="20dp"
        android:scaleType="fitCenter"
        android:src="@drawable/play_btn" />
 
    <ImageButton
        android:id="@+id/lum_8"
        android:layout_width="80dp"
        android:layout_height="80dp"
        android:layout_marginLeft="300dp"
        android:layout_marginTop="-80dp"
        android:scaleType="fitCenter"
        android:src="@drawable/play_btn" />
 
 
</LinearLayout>

Quelqu'un peut-il m'aiguiller?

Merci