Allow removing the empty view of the pull-to-refresh container

This commit is contained in:
cketti 2012-12-10 23:36:11 +01:00
parent bc2f099c3c
commit c78ec01962
1 changed files with 7 additions and 7 deletions

View File

@ -170,14 +170,14 @@ public abstract class PullToRefreshAdapterViewBase<T extends AbsListView> extend
refreshableViewWrapper.addView(newEmptyView, ViewGroup.LayoutParams.MATCH_PARENT,
ViewGroup.LayoutParams.MATCH_PARENT);
if (mRefreshableView instanceof EmptyViewMethodAccessor) {
((EmptyViewMethodAccessor) mRefreshableView).setEmptyViewInternal(newEmptyView);
} else {
mRefreshableView.setEmptyView(newEmptyView);
}
mEmptyView = newEmptyView;
}
if (mRefreshableView instanceof EmptyViewMethodAccessor) {
((EmptyViewMethodAccessor) mRefreshableView).setEmptyViewInternal(newEmptyView);
} else {
mRefreshableView.setEmptyView(newEmptyView);
}
mEmptyView = newEmptyView;
}
/**