本文整理匯總了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());
}