I have both images in the resources folder
1) ImgMsg_Normal.png
2) ImgMsg_Grey.png
in Layout file:
<ImageView
android:id="@+id/imgMsg"
android:src="@drawable/ImgMsg_Normal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:maxHeight="80dp"
android:maxWidth="80dp"
android:layout_margin="20dp"
android:scaleType="fitCenter"
local:MvxBind =" " />
in code Behind:
when this page is loaded, it first displays the said image : ImgMsg_Normal.
1) How to change the image dynamically by passing image filename: ImgMsg_Grey in Local : MvxBind above?
Thanks