iam使用MVVMCross 4.1.6(在4.1.4上也尝试过),并且在可观察集合中的项的属性存在问题。当我在两个选项卡之间重复切换时,就会发生这种情况,每个选项卡都有一个MvxRecyclerView和一个连接在一起的项目列表。基本上一个是普通列表,一个是收藏夹。
当片段通过这种方法显示时,这两个列表都是由后台的数据准备的,以确定是否显示了所有新数据:
private void updateChannels()
{
foreach (var category in CalCategories)
{
if (string.IsNullOrEmpty(m_searchString))
{
var channels = category.Channels.Where(o => o.Task == null).ToList();
if (category.Count != channels.Count)
{
category.Count = channels.Count;
}
if (channels.Count > 0)
{
if (!CalChannelList.Contains(category))
{
CalChannelList.Add(category);
}
if (category.Expanded)
{
foreach (var channel in channels)
{
if (!CalChannelList.Contains(channel))
{
CalChannelList.Add(channel);
}
}
}
}
}
else
{
var channels = category.Channels.Where(o => o.Name.Contains(SearchString) && o.Task == null).ToList();
if (category.Count != channels.Count)
{
category.Count = channels.Count;
}
if (channels.Count > 0)
{
if (!CalChannelList.Contains(category))
{
CalChannelList.Add(category);
}
if (category.Expanded)
{
foreach (var channel in channels)
{
if (!CalChannelList.Contains(channel))
{
CalChannelList.Add(channel);
}
}
}
}
}
}
}
在选项卡之间来回切换一段时间后,错误就会发生,并且总是发生在类别所在的行。计数已设置。
Stacktrace:
at <unknown> <0xffffffff>
at (wrapper managed-to-native) object.wrapper_native_0xb4ecb6f9 (intptr,intptr,intptr,Android.Runtime.JValue*) <IL 0x0002a, 0xffffffff>
at (wrapper delegate-invoke) <Module>.invoke_void_intptr_intptr_intptr_JValue* (intptr,intptr,intptr,Android.Runtime.JValue*) <IL 0x0007d, 0xffffffff>
at Android.Runtime.JNIEnv.CallVoidMethod (intptr,intptr,Android.Runtime.JValue*) [0x00040] in /Users/builder/data/lanes/3053/a94a03b5/source/monodroid/src/Mono.Android/src/Runtime/JNIEnv.g.cs:567
at Android.Widget.TextView.set_TextFormatted (Java.Lang.ICharSequence) [0x0004b] in /Users/builder/data/lanes/3053/a94a03b5/source/monodroid/src/Mono.Android/platforms/android-23/src/generated/Android.Widget.TextView.cs:3237
at Android.Widget.TextView.set_Text (string) [0x00013] in /Users/builder/data/lanes/3053/a94a03b5/source/monodroid/src/Mono.Android/platforms/android-23/src/generated/Android.Widget.TextView.cs:3248
at MvvmCross.Binding.Droid.Target.MvxTextViewTextTargetBinding.SetValueImpl (object,object) <IL 0x0000c, 0x000ab>
at MvvmCross.Binding.Bindings.Target.MvxConvertingTargetBinding.SetValue (object) [0x00088] in D:gitMvvmCrossMvvmCrossCoreBindingBindingsTargetMvxConvertingTargetBinding.cs:61
at MvvmCross.Binding.Bindings.MvxFullBinding.UpdateTargetFromSource (object) [0x00024] in D:gitMvvmCrossMvvmCrossCoreBindingBindingsMvxFullBinding.cs:156
at MvvmCross.Binding.Bindings.MvxFullBinding.<CreateSourceBinding>b__15_0 (object,System.EventArgs) [0x0000c] in D:gitMvvmCrossMvvmCrossCoreBindingBindingsMvxFullBinding.cs:85
at MvvmCross.Binding.Bindings.SourceSteps.MvxSourceStep.SendSourcePropertyChanged () [0x00006] in D:gitMvvmCrossMvvmCrossCoreBindingBindingsSourceStepsMvxSourceStep.cs:119
at MvvmCross.Binding.Bindings.SourceSteps.MvxCombinerSourceStep.SubStepOnChanged (object,System.EventArgs) [0x00000] in D:gitMvvmCrossMvvmCrossCoreBindingBindingsSourceStepsMvxCombinerSourceStep.cs:107
at MvvmCross.Binding.Bindings.SourceSteps.MvxSourceStep.SendSourcePropertyChanged () [0x00006] in D:gitMvvmCrossMvvmCrossCoreBindingBindingsSourceStepsMvxSourceStep.cs:119
at MvvmCross.Binding.Bindings.SourceSteps.MvxCombinerSourceStep.SubStepOnChanged (object,System.EventArgs) [0x00000] in D:gitMvvmCrossMvvmCrossCoreBindingBindingsSourceStepsMvxCombinerSourceStep.cs:107
at MvvmCross.Binding.Bindings.SourceSteps.MvxSourceStep.SendSourcePropertyChanged () [0x00006] in D:gitMvvmCrossMvvmCrossCoreBindingBindingsSourceStepsMvxSourceStep.cs:119
at MvvmCross.Binding.Bindings.SourceSteps.MvxCombinerSourceStep.SubStepOnChanged (object,System.EventArgs) [0x00000] in D:gitMvvmCrossMvvmCrossCoreBindingBindingsSourceStepsMvxCombinerSourceStep.cs:107
at MvvmCross.Binding.Bindings.SourceSteps.MvxSourceStep.SendSourcePropertyChanged () [0x00006] in D:gitMvvmCrossMvvmCrossCoreBindingBindingsSourceStepsMvxSourceStep.cs:119
at MvvmCross.Binding.Bindings.SourceSteps.MvxPathSourceStep.SourceBindingOnChanged (object,System.EventArgs) [0x00000] in D:gitMvvmCrossMvvmCrossCoreBindingBindingsSourceStepsMvxPathSourceStep.cs:71
at MvvmCross.Binding.Bindings.Source.MvxSourceBinding.FireChanged () [0x00006] in D:gitMvvmCrossMvvmCrossCoreBindingBindingsSourceMvxSourceBinding.cs:36
at MvvmCross.Binding.Bindings.Source.Leaf.MvxLeafPropertyInfoSourceBinding.OnBoundPropertyChanged () [0x00000] in D:gitMvvmCrossMvvmCrossCoreBindingBindingsSourceLeafMvxLeafPropertyInfoSourceBinding.cs:29
at MvvmCross.Binding.Bindings.Source.MvxPropertyInfoSourceBinding.SourcePropertyChanged (object,System.ComponentModel.PropertyChangedEventArgs) [0x00020] in D:gitMvvmCrossMvvmCrossCoreBindingBindingsSourceMvxPropertyInfoSourceBinding.cs:88
at (wrapper runtime-invoke) <Module>.runtime_invoke_void__this___object_object (object,intptr,intptr,intptr) <IL 0x00062, 0xffffffff>
at <unknown> <0xffffffff>
at (wrapper managed-to-native) System.Reflection.MonoMethod.InternalInvoke (System.Reflection.MonoMethod,object,object[],System.Exception&) <IL 0x00034, 0xffffffff>
at System.Reflection.MonoMethod.Invoke (object,System.Reflection.BindingFlags,System.Reflection.Binder,object[],System.Globalization.CultureInfo) [0x00038] in /Users/builder/data/lanes/3053/a94a03b5/source/mono/mcs/class/corlib/System.Reflection/MonoMethod.cs:295
at System.Reflection.MethodBase.Invoke (object,object[]) [0x00000] in /Users/builder/data/lanes/3053/a94a03b5/source/mono/external/referencesource/mscorlib/system/reflection/methodbase.cs:277
at MvvmCross.Platform.WeakSubscription.MvxWeakEventSubscription`2<TKey_REF, TValue_REF>.OnSourceEvent (object,TValue_REF) [0x0000f] in D:gitMvvmCrossMvvmCrossPlatformPlatformWeakSubscriptionMvxWeakEventSubscription.cs:75
at (wrapper delegate-invoke) <Module>.invoke_void_object_PropertyChangedEventArgs (object,System.ComponentModel.PropertyChangedEventArgs) <IL 0x00074, 0xffffffff>
at MvvmCross.Core.ViewModels.MvxNotifyPropertyChanged/<>c__DisplayClass10_0.<RaisePropertyChanged>b__0 () <IL 0x0001c, 0x000a7>
at MvvmCross.Droid.Views.MvxAndroidMainThreadDispatcher.RequestMainThreadAction (System.Action) <IL 0x0001f, 0x00133>
at MvvmCross.Platform.Core.MvxMainThreadDispatchingObject.InvokeOnMainThread (System.Action) [0x00000] in D:gitMvvmCrossMvvmCrossPlatformPlatformCoreMvxMainThreadDispatchingObject.cs:18
at MvvmCross.Core.ViewModels.MvxNotifyPropertyChanged.RaisePropertyChanged (System.ComponentModel.PropertyChangedEventArgs) <IL 0x00044, 0x00277>
at MvvmCross.Core.ViewModels.MvxNotifyPropertyChanged.RaisePropertyChanged (string) <IL 0x00009, 0x000b3>
at MvvmCross.Core.ViewModels.MvxNotifyPropertyChanged.SetProperty<int> (int&,int,string) <IL 0x00023, 0x00147>
at XCPCore.Models.BaseCategory.set_Count (int) [0x00001] in w:DevWAMobileXCP~BARONDSTMobileXCPMobileXcpMobileXcp.XcpCoreModelsBaseCategory.cs:26
at XCPCore.ViewModels.Cal.CalFavoritesViewModel.updateChannels () [0x00075] in w:DevWAMobileXCP~BARONDSTMobileXCPMobileXcpMobileXcp.XcpCoreViewModelsCalCalFavoritesViewModel.cs:135
at XCPCore.ViewModels.Cal.CalFavoritesViewModel.Refresh () [0x00001] in w:DevWAMobileXCP~BARONDSTMobileXCPMobileXcpMobileXcp.XcpCoreViewModelsCalCalFavoritesViewModel.cs:180
at MobileXcp.XcpAndroidApp.Fragments.CalFavoritesFragment.set_UserVisibleHint (bool) [0x0000a] in w:DevWAMobileXCP~BARONDSTMobileXCPMobileXcpMobileXcp.XcpAndroidAppFragmentsCalFavoritesFragment.cs:82
at Android.Support.V4.App.Fragment.n_SetUserVisibleHint_Z (intptr,intptr,bool) <IL 0x0000b, 0x000b7>
at (wrapper dynamic-method) object.7467b8b6-907d-4849-8505-c72161c45779 (intptr,intptr,bool) <IL 0x00017, 0x00043>
at (wrapper native-to-managed) object.7467b8b6-907d-4849-8505-c72161c45779 (intptr,intptr,int) <IL 0x0002f, 0xffffffff>
Attempting native Android stacktrace:
at ???+3035307817 [0x6fe827f8]
at ???+3035307817 [0xffffffff]
=================================================================
Got a SIGSEGV while executing native code. This usually indicates
a fatal error in the mono runtime or one of the native libraries
used by your application.
=================================================================
Fatal signal 7 (SIGBUS), code 1, fault addr 0x5 in tid 7646 (leXcp.MobileXcp)
另一个堆栈争用,发生在更改SearchView和整个列表时:
Stacktrace:
at <unknown> <0xffffffff>
at (wrapper managed-to-native) object.wrapper_native_0xb4ecb6f9 (intptr,intptr,intptr,Android.Runtime.JValue*) <IL 0x0002a, 0xffffffff>
at (wrapper delegate-invoke) <Module>.invoke_void_intptr_intptr_intptr_JValue* (intptr,intptr,intptr,Android.Runtime.JValue*) <IL 0x0007d, 0xffffffff>
at Android.Runtime.JNIEnv.CallVoidMethod (intptr,intptr,Android.Runtime.JValue*) [0x00040] in /Users/builder/data/lanes/3053/a94a03b5/source/monodroid/src/Mono.Android/src/Runtime/JNIEnv.g.cs:567
at Android.Widget.TextView.set_TextFormatted (Java.Lang.ICharSequence) [0x0004b] in /Users/builder/data/lanes/3053/a94a03b5/source/monodroid/src/Mono.Android/platforms/android-23/src/generated/Android.Widget.TextView.cs:3237
at Android.Widget.TextView.set_Text (string) [0x00013] in /Users/builder/data/lanes/3053/a94a03b5/source/monodroid/src/Mono.Android/platforms/android-23/src/generated/Android.Widget.TextView.cs:3248
at MvvmCross.Binding.Droid.Target.MvxTextViewTextTargetBinding.SetValueImpl (object,object) <IL 0x0000c, 0x000ab>
at MvvmCross.Binding.Bindings.Target.MvxConvertingTargetBinding.SetValue (object) [0x00088] in D:gitMvvmCrossMvvmCrossCoreBindingBindingsTargetMvxConvertingTargetBinding.cs:61
at MvvmCross.Binding.Bindings.MvxFullBinding.UpdateTargetFromSource (object) [0x00024] in D:gitMvvmCrossMvvmCrossCoreBindingBindingsMvxFullBinding.cs:156
at MvvmCross.Binding.Bindings.MvxFullBinding.<CreateSourceBinding>b__15_0 (object,System.EventArgs) [0x0000c] in D:gitMvvmCrossMvvmCrossCoreBindingBindingsMvxFullBinding.cs:85
at MvvmCross.Binding.Bindings.SourceSteps.MvxSourceStep.SendSourcePropertyChanged () [0x00006] in D:gitMvvmCrossMvvmCrossCoreBindingBindingsSourceStepsMvxSourceStep.cs:119
at MvvmCross.Binding.Bindings.SourceSteps.MvxCombinerSourceStep.SubStepOnChanged (object,System.EventArgs) [0x00000] in D:gitMvvmCrossMvvmCrossCoreBindingBindingsSourceStepsMvxCombinerSourceStep.cs:107
at MvvmCross.Binding.Bindings.SourceSteps.MvxSourceStep.SendSourcePropertyChanged () [0x00006] in D:gitMvvmCrossMvvmCrossCoreBindingBindingsSourceStepsMvxSourceStep.cs:119
at MvvmCross.Binding.Bindings.SourceSteps.MvxCombinerSourceStep.SubStepOnChanged (object,System.EventArgs) [0x00000] in D:gitMvvmCrossMvvmCrossCoreBindingBindingsSourceStepsMvxCombinerSourceStep.cs:107
at MvvmCross.Binding.Bindings.SourceSteps.MvxSourceStep.SendSourcePropertyChanged () [0x00006] in D:gitMvvmCrossMvvmCrossCoreBindingBindingsSourceStepsMvxSourceStep.cs:119
at MvvmCross.Binding.Bindings.SourceSteps.MvxCombinerSourceStep.SubStepOnChanged (object,System.EventArgs) [0x00000] in D:gitMvvmCrossMvvmCrossCoreBindingBindingsSourceStepsMvxCombinerSourceStep.cs:107
at MvvmCross.Binding.Bindings.SourceSteps.MvxSourceStep.SendSourcePropertyChanged () [0x00006] in D:gitMvvmCrossMvvmCrossCoreBindingBindingsSourceStepsMvxSourceStep.cs:119
at MvvmCross.Binding.Bindings.SourceSteps.MvxPathSourceStep.SourceBindingOnChanged (object,System.EventArgs) [0x00000] in D:gitMvvmCrossMvvmCrossCoreBindingBindingsSourceStepsMvxPathSourceStep.cs:71
at MvvmCross.Binding.Bindings.Source.MvxSourceBinding.FireChanged () [0x00006] in D:gitMvvmCrossMvvmCrossCoreBindingBindingsSourceMvxSourceBinding.cs:36
at MvvmCross.Binding.Bindings.Source.Leaf.MvxLeafPropertyInfoSourceBinding.OnBoundPropertyChanged () [0x00000] in D:gitMvvmCrossMvvmCrossCoreBindingBindingsSourceLeafMvxLeafPropertyInfoSourceBinding.cs:29
at MvvmCross.Binding.Bindings.Source.MvxPropertyInfoSourceBinding.SourcePropertyChanged (object,System.ComponentModel.PropertyChangedEventArgs) [0x00020] in D:gitMvvmCrossMvvmCrossCoreBindingBindingsSourceMvxPropertyInfoSourceBinding.cs:88
at (wrapper runtime-invoke) <Module>.runtime_invoke_void__this___object_object (object,intptr,intptr,intptr) <IL 0x00062, 0xffffffff>
at <unknown> <0xffffffff>
at (wrapper managed-to-native) System.Reflection.MonoMethod.InternalInvoke (System.Reflection.MonoMethod,object,object[],System.Exception&) <IL 0x00034, 0xffffffff>
at System.Reflection.MonoMethod.Invoke (object,System.Reflection.BindingFlags,System.Reflection.Binder,object[],System.Globalization.CultureInfo) [0x00038] in /Users/builder/data/lanes/3053/a94a03b5/source/mono/mcs/class/corlib/System.Reflection/MonoMethod.cs:295
at System.Reflection.MethodBase.Invoke (object,object[]) [0x00000] in /Users/builder/data/lanes/3053/a94a03b5/source/mono/external/referencesource/mscorlib/system/reflection/methodbase.cs:277
at MvvmCross.Platform.WeakSubscription.MvxWeakEventSubscription`2<TKey_REF, TValue_REF>.OnSourceEvent (object,TValue_REF) [0x0000f] in D:gitMvvmCrossMvvmCrossPlatformPlatformWeakSubscriptionMvxWeakEventSubscription.cs:75
at (wrapper delegate-invoke) <Module>.invoke_void_object_PropertyChangedEventArgs (object,System.ComponentModel.PropertyChangedEventArgs) <IL 0x00074, 0xffffffff>
at MvvmCross.Core.ViewModels.MvxNotifyPropertyChanged/<>c__DisplayClass10_0.<RaisePropertyChanged>b__0 () <IL 0x0001c, 0x000a7>
at MvvmCross.Droid.Views.MvxAndroidMainThreadDispatcher.RequestMainThreadAction (System.Action) <IL 0x0001f, 0x00133>
at MvvmCross.Platform.Core.MvxMainThreadDispatchingObject.InvokeOnMainThread (System.Action) [0x00000] in D:gitMvvmCrossMvvmCrossPlatformPlatformCoreMvxMainThreadDispatchingObject.cs:18
at MvvmCross.Core.ViewModels.MvxNotifyPropertyChanged.RaisePropertyChanged (System.ComponentModel.PropertyChangedEventArgs) <IL 0x00044, 0x00277>
at MvvmCross.Core.ViewModels.MvxNotifyPropertyChanged.RaisePropertyChanged (string) <IL 0x00009, 0x000b3>
at MvvmCross.Core.ViewModels.MvxNotifyPropertyChanged.SetProperty<int> (int&,int,string) <IL 0x00023, 0x00147>
at XCPCore.Models.BaseCategory.set_Count (int) [0x00001] in w:DevWAMobileXCP~BARONDSTMobileXCPMobileXcpMobileXcp.XcpCoreModelsBaseCategory.cs:36
at XCPCore.ViewModels.Meas.ConfigInViewModel.updateChannels () [0x00149] in w:DevWAMobileXCP~BARONDSTMobileXCPMobileXcpMobileXcp.XcpCoreViewModelsMeasConfigInViewModel.cs:209
at XCPCore.ViewModels.Meas.ConfigInViewModel.set_SearchString (string) [0x00043] in w:DevWAMobileXCP~BARONDSTMobileXCPMobileXcpMobileXcp.XcpCoreViewModelsMeasConfigInViewModel.cs:158
at (wrapper runtime-invoke) <Module>.runtime_invoke_void__this___object (object,intptr,intptr,intptr) <IL 0x0005a, 0xffffffff>
at <unknown> <0xffffffff>
at (wrapper managed-to-native) System.Reflection.MonoMethod.InternalInvoke (System.Reflection.MonoMethod,object,object[],System.Exception&) <IL 0x00034, 0xffffffff>
at System.Reflection.MonoMethod.Invoke (object,System.Reflection.BindingFlags,System.Reflection.Binder,object[],System.Globalization.CultureInfo) [0x00038] in /Users/builder/data/lanes/3053/a94a03b5/source/mono/mcs/class/corlib/System.Reflection/MonoMethod.cs:295
at System.Reflection.MonoProperty.SetValue (object,object,System.Reflection.BindingFlags,System.Reflection.Binder,object[],System.Globalization.CultureInfo) [0x0006a] in /Users/builder/data/lanes/3053/a94a03b5/source/mono/mcs/class/corlib/System.Reflection/MonoProperty.cs:445
at System.Reflection.PropertyInfo.SetValue (object,object,object[]) [0x00000] in /Users/builder/data/lanes/3053/a94a03b5/source/mono/mcs/class/corlib/System.Reflection/PropertyInfo.cs:111
at MvvmCross.Binding.Bindings.Source.Leaf.MvxLeafPropertyInfoSourceBinding.SetValue (object) [0x00060] in D:gitMvvmCrossMvvmCrossCoreBindingBindingsSourceLeafMvxLeafPropertyInfoSourceBinding.cs:83
at MvvmCross.Binding.Bindings.SourceSteps.MvxPathSourceStep.SetSourceValue (object) [0x0001b] in D:gitMvvmCrossMvvmCrossCoreBindingBindingsSourceStepsMvxPathSourceStep.cs:85
at MvvmCross.Binding.Bindings.SourceSteps.MvxSourceStep.SetValue (object) [0x0001a] in D:gitMvvmCrossMvvmCrossCoreBindingBindingsSourceStepsMvxSourceStep.cs:70
at MvvmCross.Binding.Bindings.MvxFullBinding.UpdateSourceFromTarget (object) [0x00013] in D:gitMvvmCrossMvvmCrossCoreBindingBindingsMvxFullBinding.cs:179
at MvvmCross.Binding.Bindings.MvxFullBinding.<CreateTargetBinding>b__18_0 (object,MvvmCross.Binding.Bindings.Target.MvxTargetChangedEventArgs) [0x00000] in D:gitMvvmCrossMvvmCrossCoreBindingBindingsMvxFullBinding.cs:140
at MvvmCross.Binding.Bindings.Target.MvxTargetBinding.FireValueChanged (object) [0x00006] in D:gitMvvmCrossMvvmCrossCoreBindingBindingsTargetMvxTargetBinding.cs:32
at MvvmCross.Binding.Bindings.Target.MvxConvertingTargetBinding.FireValueChanged (object) [0x0003f] in D:gitMvvmCrossMvvmCrossCoreBindingBindingsTargetMvxConvertingTargetBinding.cs:93
at MvvmCross.Binding.Droid.Target.MvxSearchViewQueryTextTargetBinding.HandleQueryTextChanged (object,Android.Widget.SearchView/QueryTextChangeEventArgs) <IL 0x00019, 0x0014f>
at Android.Widget.SearchView/IOnQueryTextListenerImplementor.OnQueryTextChange (string) [0x00017] in /Users/builder/data/lanes/3053/a94a03b5/source/monodroid/src/Mono.Android/platforms/android-23/src/generated/Android.Widget.SearchView.cs:322
at Android.Widget.SearchView/IOnQueryTextListenerInvoker.n_OnQueryTextChange_Ljava_lang_String_ (intptr,intptr,intptr) [0x00011] in /Users/builder/data/lanes/3053/a94a03b5/source/monodroid/src/Mono.Android/platforms/android-23/src/generated/Android.Widget.SearchView.cs:207
at (wrapper dynamic-method) object.bf5df6e6-8c4e-4c9b-b90b-f3b9d377de80 (intptr,intptr,intptr) <IL 0x00017, 0x0004b>
at (wrapper native-to-managed) object.bf5df6e6-8c4e-4c9b-b90b-f3b9d377de80 (intptr,intptr,intptr) <IL 0x00029, 0xffffffff>
Attempting native Android stacktrace:
at ???+0 [0x6fe827f8]
at ???+0 [0x3f7ffffc]
=================================================================
Got a SIGSEGV while executing native code. This usually indicates
a fatal error in the mono runtime or one of the native libraries
used by your application.
=================================================================
06-02 12:24:13.942 E/mono-rt ( 6344):
更新
似乎与绑定和更新ui元素有关。当项目被删除时,元素的引用可能会被清除,或者没有完全释放?至少没有在此过程中更改的MvxBindings,它不会崩溃。
更新2
public abstract class BaseCategory : MvxNotifyPropertyChanged, IChannelItem
{
public bool Expanded { get; set; }
public int FavoriteCount
{
get { return m_iFavoriteCount; }
set { SetProperty(ref m_iFavoriteCount, value); }
}
public int Count
{
get
{
return m_iCount;
}
set
{
SetProperty(ref m_iCount, value);
}
}
public string Name { get; set; }
protected BaseCategory(string sName)
{
Expanded = false;
Count = 0;
FavoriteCount = 0;
Name = sName;
}
private int m_iCount;
private int m_iFavoriteCount;
public ChannelItemTypes CItemType { get { return ChannelItemTypes.Category; } }
}
而被选中的布局是我的一个多版本模板选择器:
<?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"
xmlns:cardview="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.CardView
android:foreground="?attr/selectableItemBackground"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
cardview:cardUseCompatPadding="true"
cardview:cardCornerRadius="2dp"
cardview:cardElevation="2dp"
cardview:contentPadding="10dp">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:layout_gravity="center_horizontal"
android:layout_marginRight="5dp"
android:padding="10dp"
android:textColor="@color/white"
android:textStyle="bold"
local:MvxBind="Text (Name+' '+Count)" />
</LinearLayout>
</android.support.v7.widget.CardView>
</LinearLayout>
Update3显然updateChannels()方法创建了越来越多的数据对象。我只是不确定是什么原因造成的?绑定到UI元素,即LinQ命令?还是我只是瞎了眼?
更新4我现在创建了一个单独的项目,其中只有一个MvxRecyclerView和一个片段中的ObservableCollection。如果我点击按钮,我会在清除列表后将X个新对象添加到列表中。通过使用DeviceMonitor观察,对象不断增加,所以要么我做错了什么,要么我使用的组件出了问题。
https://github.com/Noires/MvxRecyclerViewLeakTest
更新5虽然这是一个问题,但与原始问题无关。因此,目前我只是自己更改了MVVMCross以防止它,并将在之后检查真正的问题。
更新6问题在上打开https://github.com/MvvmCross/MvvmCross/issues/1379
正如我在评论中提到的,SIGSEGV
主要与内存管理问题有关。
RecyclerView
的优点之一是可以添加元素,而无需刷新整个列表。这样可以节省大量内存。
在updateChannels
方法中,您将清除列表(可能是recyclerView
的来源),然后再次读取元素。这是一个非常糟糕的解决方案,尤其是对于大名单来说。这样一来,每次更改选项卡时,整个recyclerView
都会更新,这会严重影响性能。
您应该做的是检查是否有新数据,并且只添加新元素。
为此,您可能会找到一个更好的示例,但一个简单快速的解决方案是newList.Except(recyclerViewSourceList)
。这将为您提供来自新来源的元素,而回收器视图不包含这些元素。查看此项以了解更多详细信息:https://stackoverflow.com/a/3944821/3423468
目前的问题是,在不同的视图模型中重用服务中的一个条目池似乎并不能正确地清除绑定,因为只有条目的引用被清除,而不是条目本身。
目前我的解决方案是为每个列表和每个条目添加一个额外的绑定项。因此,如果它被删除,我会确保绑定也被删除,或者至少在GC清理之前不再使用
仍然希望有一个更好的解决方案,因为我有点需要为每个条目添加一个额外的活页夹项目,但有关更多信息,请参阅:
更新:问题(https://github.com/MvvmCross/MvvmCross/issues/1379)解决了。感谢克杰雷米的辛勤工作