Skip to content

Commit

Permalink
Fix for issue: #11
Browse files Browse the repository at this point in the history
  • Loading branch information
HBSequence committed Sep 1, 2016
1 parent 121fd2f commit 205f227
Show file tree
Hide file tree
Showing 4 changed files with 11,444 additions and 10,620 deletions.
@@ -1,11 +1,18 @@
using System;
using Android.Content;
using Android.Runtime;
using Android.Util;
using MvvmCross.Binding.Droid.Views;

namespace Sequence.Plugins.InfiniteScroll.Droid
{
public class IncrementalListView : MvxListView
{
protected IncrementalListView(IntPtr javaReference, JniHandleOwnership transfer) : base(javaReference, transfer)
{
// Added to support rehydration cases, when the app has been tombstoned.
}

public IncrementalListView(Context context, IAttributeSet attrs)
: base(context, attrs, new IncrementalAdapter(context))
{
Expand Down

0 comments on commit 205f227

Please sign in to comment.