android.support.v7.widget.GridLayoutManager.getChildAt()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(1.3k)|赞(0)|评价(0)|浏览(143)

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

GridLayoutManager.getChildAt介绍

暂无

代码示例

代码示例来源:origin: Dawish/BriskTVLauncher

/**
 * Return the child view at the given index
 *
 * @param index Index of child to return
 * @return Child view at index
 */
@Override
public View getChildAt(int index) {
  return super.getChildAt(index);
}

代码示例来源:origin: 66668/DropDownMenuplus

/**
 * Return the child view at the given index
 *
 * @param index Index of child to return
 * @return Child view at index
 */
@Override
public View getChildAt(int index) {
  return super.getChildAt(index);
}

代码示例来源:origin: Dreamxiaoxuan/AndroidTvDemo

/**
 * Return the child view at the given index
 *
 * @param index Index of child to return
 * @return Child view at index
 */
@Override
public View getChildAt(int index)
{
  return super.getChildAt(index);
}

代码示例来源:origin: Tencent/RapidView

private void cachePreLayoutSpanMapping() {
  final int childCount = getChildCount();
  for (int i = 0; i < childCount; i++) {
    final LayoutParams lp = (LayoutParams) getChildAt(i).getLayoutParams();
    final int viewPosition = lp.getViewPosition();
    mPreLayoutSpanSizeCache.put(viewPosition, lp.getSpanSize());
    mPreLayoutSpanIndexCache.put(viewPosition, lp.getSpanIndex());
  }
}

相关文章