2

从视图模型将布尔值 (HasLiked) 绑定到 Pressed 会导致错误:

Failed to create target binding for from HasLiked to Pressed

这是否意味着默认情况下不支持 MvxBind 的 android View.Pressed (和其他状态)绑定?我需要编写自定义绑定吗?

编辑-绑定:

<RelativeLayout
        style="@style/ButtonExtraSocial"
        android:background="@drawable/SelectorButtonExtra"
        app:MvxBind="Click LikeCommand; Pressed HasLiked">
....
</RelativeLayout>

视图模型中存在 HasLiked 布尔值(当我将它绑定到 TextView 文本时,我得到了值)。

4

2 回答 2

4

我似乎无法在这里重现您的问题。我创建了一个非常简单的示例,可以满足您的要求。

FirstViewModel.cs

public class FirstViewModel 
    : MvxViewModel
{
    public FirstViewModel()
    {
        IsPressed = true;
    }

    private string _hello = "Hello MvvmCross";
    public string Hello
    { 
        get { return _hello; }
        set { _hello = value; RaisePropertyChanged(() => Hello); }
    }

    public bool _isPressed;
    public bool IsPressed
    {
        get { return _isPressed; }
        set { _isPressed = value; RaisePropertyChanged(() => IsPressed); }
    }
}

第一视图.cs

[Activity(Label = "View for FirstViewModel")]
public class FirstView : MvxActivity
{
    public new FirstViewModel ViewModel
    {
        get { return (FirstViewModel)base.ViewModel; }
        set { base.ViewModel = value; }
    }

    protected override void OnCreate(Bundle bundle)
    {
        base.OnCreate(bundle);
        SetContentView(Resource.Layout.FirstView);

        var button = FindViewById<Button>(Resource.Id.button);
        button.Click += (sender, args) => ViewModel.IsPressed = !ViewModel.IsPressed;
    }
}

第一视图.axml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:local="http://schemas.android.com/apk/res-auto"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
  <EditText
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:textSize="40dp"
    local:MvxBind="Text Hello"
    />
  <TextView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:textSize="40dp"
    local:MvxBind="Text Hello"
    />
  <Button
    android:id="@+id/button"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    local:MvxBind="Text Hello; Pressed IsPressed"/>
  <RelativeLayout
    android:layout_width="fill_parent"
    android:layout_height="50dp"
    android:background="@drawable/bg"
    local:MvxBind="Pressed IsPressed"/>
</LinearLayout>

bg.xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
  <item android:drawable="@drawable/bg_pressed"
      android:state_pressed="true"/>
  <item android:drawable="@drawable/bg_normal"/>
</selector>

bg_normal.xml

<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
  <solid android:color="#FF0000" />
</shape>

bg_pressed.xml

<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
  <solid android:color="#FF00FF" />
</shape>

这会产生这两种不同的视觉状态:

第一州 第二状态

如您所见,它以IsPressed真实开始,当我单击按钮时,它变为虚假。我已经证实它也可以反过来工作。

于 2013-07-29T19:44:46.357 回答
1

谢谢 Stuart 和 Cheesebaron 的回答,但我发现了这个问题的真正原因:Xamarin Studio 中的打包设置:必须启用“使用共享单声道运行时”(我认为默认情况下它已选中,但我有未选中)。

您可以通过右键单击项目(不是解决方案!)> 属性 > Android 构建 > 使用共享的 Mono 运行时来访问打包设置。

于 2013-07-30T21:46:19.473 回答