mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-02-08 09:12:05 +08:00
Reviewed By: mkonicek Differential Revision: D2586735 fb-gh-sync-id: 477a1c84fcf2a22b681407c7e93102dd59118f25
75 lines
2.1 KiB
Java
75 lines
2.1 KiB
Java
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
|
|
package com.facebook.react.uimanager;
|
|
|
|
import android.os.SystemClock;
|
|
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
|
|
*/
|
|
/* package */ 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, SystemClock.uptimeMillis());
|
|
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);
|
|
}
|
|
}
|