mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-06-11 13:52:41 +08:00
Summary: This change drops the year from the copyright headers and the LICENSE file. Reviewed By: yungsters Differential Revision: D9727774 fbshipit-source-id: df4fc1e4390733fe774b1a160dd41b4a3d83302a
72 lines
1.9 KiB
Java
72 lines
1.9 KiB
Java
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
package com.facebook.react.uimanager;
|
|
|
|
import android.support.v4.util.Pools;
|
|
|
|
import com.facebook.react.bridge.Arguments;
|
|
import com.facebook.react.bridge.WritableMap;
|
|
import com.facebook.react.uimanager.events.Event;
|
|
import com.facebook.react.uimanager.events.RCTEventEmitter;
|
|
|
|
/**
|
|
* Event used to notify JS component about changes of its position or dimensions
|
|
*/
|
|
public class OnLayoutEvent extends Event<OnLayoutEvent> {
|
|
|
|
private static final Pools.SynchronizedPool<OnLayoutEvent> EVENTS_POOL =
|
|
new Pools.SynchronizedPool<>(20);
|
|
|
|
private int mX, mY, mWidth, mHeight;
|
|
|
|
public static OnLayoutEvent obtain(int viewTag, int x, int y, int width, int height) {
|
|
OnLayoutEvent event = EVENTS_POOL.acquire();
|
|
if (event == null) {
|
|
event = new OnLayoutEvent();
|
|
}
|
|
event.init(viewTag, x, y, width, height);
|
|
return event;
|
|
}
|
|
|
|
@Override
|
|
public void onDispose() {
|
|
EVENTS_POOL.release(this);
|
|
}
|
|
|
|
private OnLayoutEvent() {
|
|
}
|
|
|
|
protected void init(int viewTag, int x, int y, int width, int height) {
|
|
super.init(viewTag);
|
|
mX = x;
|
|
mY = y;
|
|
mWidth = width;
|
|
mHeight = height;
|
|
}
|
|
|
|
@Override
|
|
public String getEventName() {
|
|
return "topLayout";
|
|
}
|
|
|
|
@Override
|
|
public void dispatch(RCTEventEmitter rctEventEmitter) {
|
|
WritableMap layout = Arguments.createMap();
|
|
layout.putDouble("x", PixelUtil.toDIPFromPixel(mX));
|
|
layout.putDouble("y", PixelUtil.toDIPFromPixel(mY));
|
|
layout.putDouble("width", PixelUtil.toDIPFromPixel(mWidth));
|
|
layout.putDouble("height", PixelUtil.toDIPFromPixel(mHeight));
|
|
|
|
WritableMap event = Arguments.createMap();
|
|
event.putMap("layout", layout);
|
|
event.putInt("target", getViewTag());
|
|
|
|
rctEventEmitter.receiveEvent(getViewTag(), getEventName(), event);
|
|
}
|
|
}
|