android.support.v4.widget.NestedScrollView.getMeasuredHeight()方法的使用及代码示例

x33g5p2x  于2022-01-24 转载在 其他  
字(1.5k)|赞(0)|评价(0)|浏览(103)

本文整理了Java中android.support.v4.widget.NestedScrollView.getMeasuredHeight()方法的一些代码示例,展示了NestedScrollView.getMeasuredHeight()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。NestedScrollView.getMeasuredHeight()方法的具体详情如下:
包路径:android.support.v4.widget.NestedScrollView
类名称:NestedScrollView
方法名:getMeasuredHeight

NestedScrollView.getMeasuredHeight介绍

暂无

代码示例

代码示例来源:origin: dom4j1/Red

public int getScrollViewHeight(){
  return mScrollView.getMeasuredHeight();
}

代码示例来源:origin: CoderLengary/WanAndroid

@Override
  public void onScrollChange(NestedScrollView v, int scrollX, int scrollY, int oldScrollX, int oldScrollY) {
    if (scrollY == (v.getChildAt(0).getMeasuredHeight() - v.getMeasuredHeight())) {
      loadMore();
    }
  }
});

代码示例来源:origin: CoderLengary/WanAndroid

@Override
  public void onScrollChange(NestedScrollView v, int scrollX, int scrollY, int oldScrollX, int oldScrollY) {
    if (scrollY == (v.getChildAt(0).getMeasuredHeight() - v.getMeasuredHeight())) {
      loadMore();
    }
  }
});

代码示例来源:origin: naman14/Hacktoberfest-Android

@Override
  public void onScrollChange(NestedScrollView view, int scrollX, int scrollY, int oldScrollX, int oldScrollY) {
    if (scrollY > oldScrollY) {
      if (fab.getVisibility() == View.VISIBLE) {
        FabAnimationUtils.scaleOut(fab);
      }
    }
    if (scrollY < oldScrollY) {
      if (fab.getVisibility() != View.VISIBLE) {
        fab.setVisibility(View.VISIBLE);
        FabAnimationUtils.scaleIn(fab);
      }
    }
    if(view.getChildAt(view.getChildCount() - 1) != null) {
      if ((scrollY >= (view.getChildAt(view.getChildCount() - 1).getMeasuredHeight() - view.getMeasuredHeight())) &&
          scrollY > oldScrollY) {
        if (!loading) {
          page++;
          fetchIssues();
        }
      }
    }
  }
});

相关文章