this is with regard to the following question on stackoverflow. I am trying to have a touch command for a button as described here but nothing happens. mvvmcross touch command binding in android
<Button
xmlns:local="http://schemas.android.com/apk/res/Test.UI.Droid"
android:text="Office"
android:layout_column="0"
android:id="@+id/imageButton1"
local:MvxBind="{'Touch':{'Path':'ItemClickCommand'}}"/>
public IMvxCommand ItemClickCommand
{
get
{
return new MvxRelayCommand(() => this.RequestNavigate<Tests.OfficeViewModel>(true));
}
}
What am I doing wrong in the above code, why does it not fire.