2

这是关于MvvmCross Android Dialog Bing Programmatically的后续文章

我已经在 Droid 项目中实现了 Dialog 的绑定:

    this.Root = new RootElement("Customer Info")
    {
        new Section("Private Configuration")
        {
            new EntryElement("Pin:").Bind(this, "{'Value':{'Path':'Configuration.Pin'}}"),
            new EntryElement("Name:").Bind(this, "{'Value':{'Path':'Configuration.Name', 'Mode':'TwoWay'}}"),
        };
    };

我在绑定中添加了TwoWayConfiguration.Name只是为了测试目的。

现在的问题是绑定仅在OneWay中有效。如果我更改视图中的某些内容,则不会更新对象,但如果更改了对象,则会通知视图。这发生在上述两种绑定中(在绑定模式中使用或不使用TwoWay)。

这是唯一剩下的一个完整的 Droid.Dialog 项目,使用 MvvmCross 框架,使用由 viewModels 控制的绑定和多个视图。

从我能够调试的内容来看(在 VS2010 中只有 Droid 代码,没有 PCL),每次我更改 中的文本时EntryElement,都会调用OnTextChanged方法并且属性正在更新。

入口元素.cs

    public virtual void OnTextChanged(string newText)
    {
        //Log.Info("Just playing","New text:" + newText);
        OnUserValueChanged(newText);
    }

值元素.cs

    protected void OnUserValueChanged(TValueType newValue)
    {
        Value = newValue;
        FireValueChanged();
    }

    protected virtual void FireValueChanged()
    {
        var handler = ValueChanged;
        if (handler != null)
            handler(this, EventArgs.Empty);
    }

这是我在核心和机器人项目中的代码

BaseViewModel.cs

    public class BaseViewModel : MvxViewModel, IMvxServiceConsumer
    {
        protected IConfigurationDataStore ConfigDataStore
        {
            get
            {
                if (_configDataStore == null)
                    _configDataStore = this.GetService<IConfigurationDataStore>();

                return _configDataStore;
            }
        }
        private IConfigurationDataStore _configDataStore;
    }

编辑配置视图模型.cs

    public class EditConfigurationViewModel : BaseViewModel, IEditConfigurationViewModel
    {
        public ConfigurationSet Configuration
        {
            get { return _configuration; }
            set
            {
                if (_configuration != value)
                {
                    _configuration = value;
                    RaisePropertyChanged(() => Configuration);
                }
            }
        }
        private ConfigurationSet _configuration;

        public EditConfigurationViewModel(string id)
        {
            Guid value;
            if (string.IsNullOrEmpty(id) || !Guid.TryParse(id, out value))
            {
                Configuration = new ConfigurationSet();
            }
            else
            {
                Configuration = ConfigDataStore.GetConfiguration(value);
            }
        }

        public void SaveConfiguration()
        {
            ConfigDataStore.UpdateConfiguration(Configuration);
        }
    }

配置集.cs

    public class ConfigurationSet : MvxNotifyPropertyChanged
    {
        public string Pin
        {
            get { return _pin; }
            set
            {
                if (_pin != value)
                {
                    _pin = value;
                    RaisePropertyChanged(() => Pin);
                }
            }
        }
        private string _pin;

        public string Name
        {
            get { return _name; }
            set
            {
                //if (_name != value)
                //{
                    _name = value;
                    RaisePropertyChanged(()=> Name);
                //}
            }
        }
        private string _name;

        public string PrivateDescription
        {
            get { return _privateDescription; }
            set
            {
                if (_privateDescription != value)
                {
                    _privateDescription = value;
                    RaisePropertyChanged(() => PrivateDescription);
                }
            }
        }
        private string _privateDescription;
    }

机器人

编辑配置视图

    public class EditConfigurationView : MvxBindingDialogActivityView<EditConfigurationViewModel>, IMvxServiceConsumer
    {
        protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);

            DroidResources.Initialise(typeof(Resource.Layout));

            Root = new RootElement()
                {
                    new Section("Private Configuration")
                    {
                        new EntryElement("Pin:").Bind(this, "{'Value':{'Path':'Configuration.Pin'}}"),
                        new EntryElement("Name:").Bind(this, "{'Value':{'Path':'Configuration.Name'}}"),
                        new EntryElement("Description:").Bind(this, "{'Value':{'Path':'Configuration.PrivateDescription'}}")
                    }
                };
        }

        public override void OnBackPressed()
        {
            ViewModel.SaveConfiguration();

            base.OnBackPressed();
        }

        protected override void OnViewModelSet()
        {

        }
    }
4

3 回答 3

2

在https://github.com/zleao/MvvmCross.Dialog上看到您的回购后的第二个答案


感谢您的附加信息。

我还没有运行您的示例,但是查看重现问题的简单代码很有帮助。

我认为问题可能出在您的安装文件中 - https://github.com/zleao/MvvmCross.Dialog/blob/master/MvvmCross.Dialog.UI.Droid/Setup.cs

那里的安装程序继承自MvxBaseAndroidBindingSetupwhich 是其中所有内容的基本安装程序类,Cirrious.MvvmCross.Binding.Droid并且它本身继承MvxBaseAndroidSetupCirrious.MvvmCross.Droid

由于除了“只是绑定”之外您还使用对话框代码,因此您需要进一步进行设置 - 您需要添加MvxBaseAndroidDialogBindingSetupfrom Cirrious.MvvmCross.Dialog.Droid. Value此类添加了许多重要步骤,包括为所有ValueElement实例注册双向绑定- 请参阅:

    protected override void FillTargetFactories(
        Cirrious.MvvmCross.Binding.Interfaces.Bindings.Target.Construction.IMvxTargetBindingFactoryRegistry registry)
    {
        registry.RegisterFactory(new MvxPropertyInfoTargetBindingFactory(typeof (ValueElement), "Value",
                                                                         (element, propertyInfo) =>
                                                                         new MvxElementValueTargetBinding(element,
                                                                                                          propertyInfo)));
        base.FillTargetFactories(registry);
    }

https://github.com/slodge/MvvmCross/blob/vnext/Cirrious/Cirrious.MvvmCross.Dialog.Droid/MvxBaseAndroidDialogBindingSetup.cs


所以 - 要尝试解决问题,请尝试从 MvxBaseAndroidDialogBindingSetup


有关 MvvmCross 层的更多信息,请参阅http://slodge.blogspot.co.uk/2012/12/a-short-guide-to-layers-of-mvvmcross.html


我希望这有助于并解决问题。

感谢您提供的出色细节水平。

但请注意,与 Touch Dialog 代码相比,Droid.Dialog 代码还很年轻——因此您可能会在此过程中遇到真正的错误和问题。当您遇到它们时,请在此处提问,或者如果它们是错误,请在https://github.com/slodge/MvvmCross/issues?state=open上的问题上记录它们

斯图尔特

于 2013-01-26T10:48:56.400 回答
1

我刚刚使用修改后的 CustomerManagement 示例应用程序对此进行了测试——这个绑定对我来说是双向的。

我的代码:

        Root = new RootElement()
            {
                new Section("Customer Info")
                    {
                        new EntryElement("Name").Bind(this, "{'Value':{'Path':'Customer.Name'}}"),
                        new EntryElement("Website").Bind(this, "{'Value':{'Path':'Customer.Website'}}"),
                        new EntryElement("Phone").Bind(this, "{'Value':{'Path':'Customer.PrimaryPhone'}}"),
                    }
            };

我的 ViewModel 和 Customer 对象是:

public abstract class BaseEditCustomerViewModel
    : BaseViewModel
{
    private Customer _customer;
    public Customer Customer
    {
        get { return _customer; }
        private set { _customer = value; RaisePropertyChanged("Customer"); }
    }

    // ...
}

public class Customer : MvxNotifyPropertyChanged
{
    public Customer()
    {
    }

    private string _name;
    public string Name
    {
        get { return _name; }
        set { _name = value; RaisePropertyChanged("Name"); }
    }

    private string _website;
    public string Website
    {
        get { return _website; }
        set { _website = value; RaisePropertyChanged("Website"); }
    }

    private string _primaryPhone;
    public string PrimaryPhone
    {
        get { return _primaryPhone; }
        set { _primaryPhone = value; RaisePropertyChanged("PrimaryPhone"); }
    }

    // ...
}

根据您的描述,我没有发现任何明显的错误——尽管显然我看不到所有的细节——例如 ViewModel 端的 Configuration 对象是什么?


如果您怀疑这可能是一个错误,那么在https://github.com/slodge/MvvmCross/issues/new上记录这些可能是最简单的

您可以在错误中包含的详细信息越多,查看它的速度就越快 - 例如,如果您可以包含重现问题的示例 github 存储库,那么开发人员可以快速轻松地进行测试。相反,如果您只是提供说明,那么开发人员可能需要 1 小时或更长时间来进行测试——因此您需要等待他们有“空闲时间”。


对于“调试......只有 Droid 代码,没有 PCL,在 VS2010 中”的投诉,请确保您已向 Xamarin 提出此问题 - 他们解决这些问题的唯一方法是付费客户告诉他们问题。

于 2013-01-22T18:02:44.073 回答
0

这在 iOS 中也是必需的。

public class Setup : MvxIosDialogSetup//MvxIosSetup
于 2016-12-11T15:42:53.187 回答