mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Expose SurfaceID as part ReactRootView
Summary: This diff exposes the surfaceID as part of ReactRootView. Changelog: [internal] Reviewed By: JoshuaGross Differential Revision: D18474014 fbshipit-source-id: 98f651b211d3cc4df88c6b1eb257bc12129eff57
This commit is contained in:
committed by
Facebook Github Bot
parent
76f41a0578
commit
f0b6f8441b
@@ -426,6 +426,13 @@ public class ReactRootView extends FrameLayout implements RootView, ReactRoot {
|
||||
mShouldLogContentAppeared = shouldLogContentAppeared;
|
||||
}
|
||||
|
||||
@Nullable
|
||||
@Override
|
||||
public String getSurfaceID() {
|
||||
Bundle appProperties = getAppProperties();
|
||||
return appProperties != null ? appProperties.getString("surfaceID") : null;
|
||||
}
|
||||
|
||||
private void updateRootLayoutSpecs(final int widthMeasureSpec, final int heightMeasureSpec) {
|
||||
if (mReactInstanceManager == null) {
|
||||
FLog.w(
|
||||
|
||||
Reference in New Issue
Block a user