當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。