MvxBind:Error: View type not found - mvvmemiextensions.EmiDatePicker

ε祈祈猫儿з 提交于 2019-12-11 10:49:46

问题


I'm using EmiDatePicker but, at open the View a this Error occurs:

MvxBind:Error:452,00 View type not found - mvvmemiextensions.EmiDatePicker 03-13 16:31:21.439 I/mono-stdout(20760): MvxBind:Error:452,00 View type not found - mvvmemiextensions.EmiDatePicker [0:] MvxBind:Error:452,00 View type not found - mvvmemiextensions.EmiDatePicker

At AXML...

<mvvmemiextensions.EmiDatePicker
local:MvxBind="Value SomeDateValue"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:layout_marginTop="5dp"
android:textColor="#000000"
android:textSize="18dp" />

At Setup.cs

protected override void FillTargetFactories(IMvxTargetBindingFactoryRegistry registry)
{
        try
        {
            registry.RegisterFactory(new MvxSimplePropertyInfoTargetBindingFactory(typeof(EmiDatePickerValueTargetBinding), typeof(EmiDatePicker), "Value"));
            registry.RegisterFactory(new MvxSimplePropertyInfoTargetBindingFactory(typeof(EmiTimePickerValueTargetBinding), typeof(EmiTimePicker), "Value"));

            base.FillTargetFactories(registry);
        }
        catch (Exception ex)
        {
            throw;
        }
    }

回答1:


If you've pulled the EmiPicker's in from a separate Assembly, then you need to let MvvmCross know the Assembly those are in - see https://github.com/MvvmCross/MvvmCross/wiki/Customising-using-App-and-Setup#providing-custom-views-android

If you've copied the EmiPicker's into the current UI Assembly, then you shouldn't need the mvvmemiextensions prefixes

If all else fails, you should be able to use the built-in MvxDatePicker and MvxTimePicker - which were inspired by Emi's work :) See example uses in the ApiExamples sample - e.g. https://github.com/MvvmCross/MvvmCross-Tutorials/blob/master/ApiExamples/ApiExamples.Droid/Resources/Layout/Test_Time.axml



来源:https://stackoverflow.com/questions/22389295/mvxbinderror-view-type-not-found-mvvmemiextensions-emidatepicker

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!