Xamarin.Android System.TypeInitializationException: 'ReactiveUI.ControlFetcherMixin' 的类型初始值设定项抛出异常

Xamarin.Android System.TypeInitializationException: The type initializer for 'ReactiveUI.ControlFetcherMixin' threw an exception

尝试使用 Xamarin.Android + ReactiveUI 调用 WireUpControls() 时出现以下异常。

System.TypeInitializationException: The type initializer for 'ReactiveUI.ControlFetcherMixin' threw an exception

我已经检查了以下内容,但仍然遇到异常。

  1. https://reactiveui.net/docs/handbook/data-binding/xamarin-android/wire-up-controls
  2. 中定义的控件命名约定
  3. 通过改变解析策略。

我的Layout中只有一个ListView。

主要Activity:

protected override void OnCreate(Bundle savedInstanceState)
        {
            base.OnCreate(savedInstanceState);

            SetContentView(Resource.Layout.Main);
            this.WireUpControls(ControlFetcherMixin.ResolveStrategy.ExplicitOptIn);
            SetupUserInterface();

            this.OneWayBind(ViewModel, x => x.OutletListing, x => x.OutletListItems).DisposeWith(SubscriptionDisposables);

        }

更新: 发现内部异常

+       ex  {System.TypeInitializationException: The type initializer for 'ReactiveUI.ControlFetcherMixin' threw an exception. ---> System.InvalidOperationException: You're using multiple resource ID's with the same name but with different casings which isn't allowed for WireUpControls: { Image = image }, { Text = text }, { Text2 = text2 } ---> System.ArgumentException: An item with the same key has already been added. Key: image
  at System.Collections.Generic.Dictionary`2[TKey,TValue].TryInsert (TKey key, TValue value, System.Collections.Generic.InsertionBehavior behavior) [0x000bb] in <896ad1d315ca4ba7b117efb8dacaedcf>:0 
  at System.Collections.Generic.Dictionary`2[TKey,TValue].Add (TKey key, TValue value) [0x00000] in <896ad1d315ca4ba7b117efb8dacaedcf>:0 
  at System.Linq.Enumerable.ToDictionary[TSource,TKey,TElement] (System.Collections.Generic.IEnumerable`1[T] source, System.Func`2[T,TResult] keySelector, System.Func`2[T,TResult] elementSelector, System.Collections.Generic.IEqualityComparer`1[T] comparer) [0x0009e] in <b5bd9d990a0b4733885e90ca5ec6c0fb>:0 
  at System.Linq.Enumerable.ToDictionary[TSource,TKey,TElement] (System.Collections.Generic.IEnumerable`1[T] source, System.Func`2[T,TResult] keySelector, System.Func`2[T,TResult] elementSelector) [0x00000] in <b5bd9d990a0b4733885e90ca5ec6c0fb>:0 
  at ReactiveUI.ControlFetcherMixin..cctor () [0x00048] in C:\projects\reactiveui\src\ReactiveUI\Android\ControlFetcherMixin.cs:34 
   --- End of inner exception stack trace ---
  at ReactiveUI.ControlFetcherMixin..cctor () [0x0010c] in C:\projects\reactiveui\src\ReactiveUI\Android\ControlFetcherMixin.cs:45 
   --- End of inner exception stack trace ---

你的实际Exception可能在InnerException中,特别注意文档中的这段话:

Because the dictionary is indexed on the lowercase variant of the name, you can't use the same resouce name twice in your layouts with different casings. Android is case-sensitive when generating resource ID's, thus making it impossbile to map this to a single resource ID for use with WireUpControls.

您可能使用了多个类似但只是大小写不同的资源名称。