本文整理汇总了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;
}
示例2: offsetDescendantRect
import android.view.ViewGroup; //导入方法依赖的package包/类
@Override
public void offsetDescendantRect(ViewGroup parent, View child, Rect rect) {
parent.offsetDescendantRectToMyCoords(child, rect);
}
示例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;
}
示例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()};
}
示例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());
}