Je viens de commencer à apprendre Android. Et je ne sais pas Comment puis-je changer l'image d'une ImageView
? c'est-à-dire qu'il y a une image qui a été définie dans la mise en page mais je veux changer cette image par le biais du codage, comment dois-je faire ?
Voici le fichier xml
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#cc8181"
>
<ImageView
android:id="@+id/image"
android:layout_width="50dip"
android:layout_height="fill_parent"
android:src="@drawable/icon"
android:layout_marginLeft="3dip"
android:scaleType="center"/>
Merci de votre réponse.