本文整理了Java中android.support.v4.widget.SwipeRefreshLayout.canChildScrollUp()
方法的一些代码示例,展示了SwipeRefreshLayout.canChildScrollUp()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。SwipeRefreshLayout.canChildScrollUp()
方法的具体详情如下:
包路径:android.support.v4.widget.SwipeRefreshLayout
类名称:SwipeRefreshLayout
方法名:canChildScrollUp
暂无
代码示例来源:origin: malmstein/yahnac
@Override
public boolean canChildScrollUp() {
if (delegate != null) {
return delegate.isReadyForPull();
}
return super.canChildScrollUp();
}
代码示例来源:origin: HotBitmapGG/LeisureRead
@Override
public boolean canChildScrollUp() {
if (mCanChildScrollUpCallback != null) {
return mCanChildScrollUpCallback.canSwipeRefreshChildScrollUp();
}
return super.canChildScrollUp();
}
}
代码示例来源:origin: ashishbhandari/AndroidTabbedDialog
@Override
public boolean canChildScrollUp() {
if (mCanChildScrollUpCallback != null) {
return mCanChildScrollUpCallback.canSwipeRefreshChildScrollUp();
}
return super.canChildScrollUp();
}
}
代码示例来源:origin: Null-Ouwenjie/zhizhihu
@Override
public boolean canChildScrollUp() {
if (mCanChildScrollUpCallback != null) {
return mCanChildScrollUpCallback.canSwipeRefreshChildScrollUp();
}
return super.canChildScrollUp();
}
}
代码示例来源:origin: attentiveness/News
@Override
public boolean canChildScrollUp() {
if (mChildView != null) {
return ViewCompat.canScrollVertically(mChildView, -1);
}
return super.canChildScrollUp();
}
代码示例来源:origin: vsona/orz
@Override
public boolean canChildScrollUp() {
if (mCanChildScrollUpCallback != null) {
return mCanChildScrollUpCallback.canSwipeRefreshChildScrollUp();
}
return super.canChildScrollUp();
}
}
代码示例来源:origin: ashishbhandari/RetailStore
@Override
public boolean canChildScrollUp() {
if (mCanChildScrollUpCallback != null) {
return mCanChildScrollUpCallback.canSwipeRefreshChildScrollUp();
}
return super.canChildScrollUp();
}
}
代码示例来源:origin: evernote/evernote-sdk-android
@Override
public boolean canChildScrollUp() {
AbsListView listView = findListView(this);
if (listView != null) {
return ViewCompat.canScrollVertically(listView, -1);
} else {
return super.canChildScrollUp();
}
}
代码示例来源:origin: kingargyle/adt-leanback-support
if (!isEnabled() || mReturningToStart || canChildScrollUp()) {
代码示例来源:origin: kingargyle/adt-leanback-support
if (!isEnabled() || mReturningToStart || canChildScrollUp() || mRefreshing) {
内容来源于网络,如有侵权,请联系作者删除!