当前位置: 首页>>代码示例>>Java>>正文


Java ViewGroup.offsetDescendantRectToMyCoords方法代码示例

本文整理汇总了Java中android.view.ViewGroup.offsetDescendantRectToMyCoords方法的典型用法代码示例。如果您正苦于以下问题:Java ViewGroup.offsetDescendantRectToMyCoords方法的具体用法?Java ViewGroup.offsetDescendantRectToMyCoords怎么用?Java ViewGroup.offsetDescendantRectToMyCoords使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在android.view.ViewGroup的用法示例。


在下文中一共展示了ViewGroup.offsetDescendantRectToMyCoords方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: findLocationWithView

import android.view.ViewGroup; //导入方法依赖的package包/类
public Rect findLocationWithView(View view)
{
    ViewGroup root = (ViewGroup)getMainUpView().getParent();
    Rect rect = new Rect();
    root.offsetDescendantRectToMyCoords(view, rect);
    return rect;
}
 
开发者ID:Dreamxiaoxuan,项目名称:AndroidTvDemo,代码行数:8,代码来源:BaseEffectBridgeWrapper.java

示例2: offsetDescendantRect

import android.view.ViewGroup; //导入方法依赖的package包/类
@Override
public void offsetDescendantRect(ViewGroup parent, View child, Rect rect) {
    parent.offsetDescendantRectToMyCoords(child, rect);
}
 
开发者ID:Alcatraz323,项目名称:MaterialOCR,代码行数:5,代码来源:ViewGroupUtils.java

示例3: findLocation

import android.view.ViewGroup; //导入方法依赖的package包/类
/**
 * 获取当前view的坐标
 * @param view
 * @return
 */
private Rect findLocation(View view){
    ViewGroup viewGroup = (ViewGroup) this.getParent();
    if (viewGroup != null && view != null) {
        Rect rect = new Rect();
        viewGroup.offsetDescendantRectToMyCoords(view, rect);

        return rect;
    }
    return null;
}
 
开发者ID:LillteZheng,项目名称:AndroidTvRectAnim,代码行数:16,代码来源:FlyBroadLayout.java

示例4: getCenterClickedView

import android.view.ViewGroup; //导入方法依赖的package包/类
private int[] getCenterClickedView(ViewGroup from) {
  Rect clickedViewRect = new Rect();
  clickedView.getDrawingRect(clickedViewRect);
  from.offsetDescendantRectToMyCoords(clickedView, clickedViewRect);
  return new int[] {(int) clickedViewRect.exactCenterX(), (int) clickedViewRect.exactCenterY()};
}
 
开发者ID:wealthfront,项目名称:magellan,代码行数:7,代码来源:CircularRevealTransition.java

示例5: offsetDescendantRect

import android.view.ViewGroup; //导入方法依赖的package包/类
public void offsetDescendantRect(ViewGroup parent, View child, Rect rect) {
    parent.offsetDescendantRectToMyCoords(child, rect);
    rect.offset(child.getScrollX(), child.getScrollY());
}
 
开发者ID:JackChan1999,项目名称:boohee_v5.6,代码行数:5,代码来源:ViewGroupUtils.java


注:本文中的android.view.ViewGroup.offsetDescendantRectToMyCoords方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。