Probleme accession id fichier xml.
Bonjour,
J'ai créé une class Toto qui extends Activity, j'ai créé un fichier xml nommé arank. Dans ma class Toto, j'ai fais:
Code:
1 2 3 4 5 6 7
|
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.arank);
} |
Dans mon fichier xml j'ai:
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ListView android:id="@+id/Score"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
</ListView>
</LinearLayout> |
Je voudrais accéder au membre Score. Faire un Score.add(truc); si c'est possible. Mais je n'arrive pas à l'appeler. De plus je ne suis pas sur de android:id="@+id/Score", je ne comprends pas la partie "@+id/" (j'ai pris ça sur le net vu que id="Score" ne marchait pas).
Merci de votre aide.