我正在开发一个跨平台的应用程序,在android中启动它。我找到了你的MVVMCross项目,我正试图进入它。现在我对它完全陌生,不知道如何将我的WebService-Results绑定到我的ListView。 这里有一些XAML作为示例,我正在尝试它:
xmlns:mobsales="http://schemas.android.com/apk/res/MobSales.DroidUI"
...
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
mobsales:MvxItemTemplate="@layout/listitem_customer"
mobsales:MvxBind="{'ItemSource':{'Path':'Customer'}}" />
...
看起来像这样
<cirrious.mvvmcross.binding.android.views.MvxBindableListView
android:id="@+id/autocomplete"
android:layout_below="@id/txtfield"
android:layout_centerHorizontal="true"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
mobsales:MvxItemTemplate="@layout/listitem_customer"
mobsales:MvxBind="{'ItemSource':{'Path':'Customers'}}" />
当我徘徊最后两行时,工具提示表示属性未声明。我真的不知道你是怎么做到的。你能给我一些建议吗?我想我必须在我的UI项目的值中写一些xml,对吧?
另一个问题:我如何使用AutoCompleteTextViews?我必须首先编写自己的MvXBindables吗?有什么建议? : - )
答案 0 :(得分:5)
要使这些属性绑定,您需要包含命名空间 - 看起来您已经完成了。
您还需要将MvxBindingAttributes.xml文件包含到UI项目中 - https://github.com/slodge/MvvmCross/blob/master/Cirrious/Cirrious.MvvmCross.Binding/ResourcesToCopy/MvxBindingAttributes.xml - 并且必须将此文件的构建操作设置为&#34; AndroidResource&#34;
有关示例,请参阅任何Android示例项目 - https://github.com/slodge/MvvmCross
关于添加绑定的问题的第二部分,绑定框架应该自动单向绑定(从ViewModel到View)到任何Monodroid View / widget上的现有公共属性。
如果公共属性不是正确的类型(例如,它是某些Android枚举而不是视图),那么您可以使用IMvxValueConverter进行转换。
如果您想进行双向绑定,或者没有要绑定的公共属性,那么您可以轻松地进行自定义绑定。有关此示例,请参阅the conference sample
中的自定义IsFavorite 2方式绑定此代码添加了一个新的可绑定伪属性&#34; IsFavorite&#34;到每个Android按钮。
...这是在Setup.cs中使用如下代码初始化的:
protected override void FillTargetFactories(MvvmCross.Binding.Interfaces.Bindings.Target.Construction.IMvxTargetBindingFactoryRegistry registry)
{
base.FillTargetFactories(registry);
registry.RegisterFactory(
new MvxCustomBindingFactory<Button>(
"IsFavorite",
(button) => new FavoritesButtonBinding(button)));
}
...而且绑定代码是:
public class FavoritesButtonBinding
: MvxBaseAndroidTargetBinding
{
private readonly Button _button;
private bool _currentValue;
public FavoritesButtonBinding(Button button)
{
_button = button;
_button.Click += ButtonOnClick;
}
private void ButtonOnClick(object sender, EventArgs eventArgs)
{
_currentValue = !_currentValue;
SetButtonBackground();
FireValueChanged(_currentValue);
}
public override void SetValue(object value)
{
var boolValue = (bool)value;
_currentValue = boolValue;
SetButtonBackground();
}
private void SetButtonBackground()
{
if (_currentValue)
{
_button.SetBackgroundResource(Resource.Drawable.star_gold_selector);
}
else
{
_button.SetBackgroundResource(Resource.Drawable.star_grey_selector);
}
}
protected override void Dispose(bool isDisposing)
{
if (isDisposing)
{
_button.Click -= ButtonOnClick;
}
base.Dispose(isDisposing);
}
public override Type TargetType
{
get { return typeof(bool); }
}
public override MvxBindingMode DefaultMode
{
get { return MvxBindingMode.TwoWay; }
}
}