Searched refs:attachToRoot (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/core/java/android/view/ |
D | LayoutInflater.java | 392 public View inflate(int resource, ViewGroup root, boolean attachToRoot) { in inflate() argument 396 return inflate(parser, root, attachToRoot); in inflate() 424 public View inflate(XmlPullParser parser, ViewGroup root, boolean attachToRoot) { in inflate() argument 454 if (root == null || !attachToRoot) { in inflate() 478 if (!attachToRoot) { in inflate() 496 if (root != null && attachToRoot) { in inflate() 502 if (root == null || !attachToRoot) { in inflate()
|
/frameworks/base/core/java/android/preference/ |
D | GenericInflater.java | 259 public T inflate(int resource, P root, boolean attachToRoot) { in inflate() argument 263 return inflate(parser, root, attachToRoot); in inflate() 291 boolean attachToRoot) { in inflate() argument 320 result = (T) onMergeRoots(root, attachToRoot, (P) xmlRoot); in inflate()
|
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/ |
D | BridgeContext.java | 312 boolean attachToRoot, boolean skipCallbackParser) { in inflateView() argument 330 mBridgeInflater.inflate(blockParser, parent, attachToRoot), in inflateView() 368 mBridgeInflater.inflate(blockParser, parent, attachToRoot), in inflateView()
|
/frameworks/base/docs/html/resources/articles/ |
D | layout-tricks-merge.jd | 198 specify a parent <code>ViewGroup</code> and you must set <code>attachToRoot</code> to
|