Is possible to get element from React Native view through native Java code?
For example this is part of my code in app.js
:
<View style={styles.imageContainer}>
<Image id="bitmapPreview"/>
</View>
and my Native Bridge code:
iv = (ImageView) context.getCurrentActivity().findViewById(R.id.bitmapPreview);
I couldn't find answer for that :(