Android layout into react native View The Next CEO of Stack OverflowIs there a way to run Python on Android?How do save an Android Activity state using save instance state?Close/hide the Android Soft KeyboardWhy is the Android emulator so slow? How can we speed up the Android emulator?“Debug certificate expired” error in Eclipse Android pluginsIs there a unique Android device ID?What is the difference between gravity and layout_gravity in Android?What is 'Context' on Android?What's “tools:context” in Android layout files?Proper use cases for Android UserManager.isUserAGoat()?
Why is there a PLL in CPU?
Why were Madagascar and New Zealand discovered so late?
What's the point of interval inversion?
declare as function pointer and initialize in the same line
How to write the block matrix in LaTex?
Opposite of a diet
Why is Miller's case titled R (Miller)?
Why doesn't a table tennis ball float on the surface? How do we calculate buoyancy here?
Visit to the USA with ESTA approved before trip to Iran
When airplanes disconnect from a tanker during air to air refueling, why do they bank so sharply to the right?
Describing a person. What needs to be mentioned?
Whats the best way to handle refactoring a big file?
A pseudo-riley?
Does it take more energy to get to Venus or to Mars?
count occurances of text in file with bash
Inappropriate reference requests from Journal reviewers
% symbol leads to superlong (forever?) compilations
How do I solve this limit?
Was a professor correct to chastise me for writing "Prof. X" rather than "Professor X"?
How do scammers retract money, while you can’t?
Is it a good idea to use COLUMN AS (left([Another_Column],(4)) instead of LEFT in the select?
Why didn't Theresa May consult with Parliament before negotiating a deal with the EU?
Removing read access from a file
How do spells that require an ability check vs. the caster's spell save DC work?
Android layout into react native View
The Next CEO of Stack OverflowIs there a way to run Python on Android?How do save an Android Activity state using save instance state?Close/hide the Android Soft KeyboardWhy is the Android emulator so slow? How can we speed up the Android emulator?“Debug certificate expired” error in Eclipse Android pluginsIs there a unique Android device ID?What is the difference between gravity and layout_gravity in Android?What is 'Context' on Android?What's “tools:context” in Android layout files?Proper use cases for Android UserManager.isUserAGoat()?
I creating an android native module from an existing Java library. This library, make a GLSurfaceView
setEGLContextClientVersion(2);
setRenderer(new GLSurfaceView.Renderer()
@Override
public void onSurfaceCreated(GL10 gl, EGLConfig config)
//Do things
@Override
public void onSurfaceChanged(GL10 gl, int width, int height)
//Do things
@Override
public void onDrawFrame(GL10 gl)
//Do things
);
into an android layout
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.___.FpvActivity">
<com.____.GLSurfaceView
android:layout_width="match_parent"
android:layout_height="match_parent">
</com.____.GLSurfaceView>
</RelativeLayout>
and set it by
setContentView(R.layout.activity_fpv);
What I want to do, is a react native module ( only android ) to include this view into a React Native Component. This View must be in the background of other RN elements.
What I'd tried to do is to inflate this layout by a ViewManager by
View.inflate(getApplicationContext(), R.layout.activity_fpv, null); but without solution.
I can only see the original layout without my element ( put over in .js file)
Some ideas? This is my first experience with an RN Native module with layout interaction and I don't have much experience in Android/Java language
add a comment |
I creating an android native module from an existing Java library. This library, make a GLSurfaceView
setEGLContextClientVersion(2);
setRenderer(new GLSurfaceView.Renderer()
@Override
public void onSurfaceCreated(GL10 gl, EGLConfig config)
//Do things
@Override
public void onSurfaceChanged(GL10 gl, int width, int height)
//Do things
@Override
public void onDrawFrame(GL10 gl)
//Do things
);
into an android layout
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.___.FpvActivity">
<com.____.GLSurfaceView
android:layout_width="match_parent"
android:layout_height="match_parent">
</com.____.GLSurfaceView>
</RelativeLayout>
and set it by
setContentView(R.layout.activity_fpv);
What I want to do, is a react native module ( only android ) to include this view into a React Native Component. This View must be in the background of other RN elements.
What I'd tried to do is to inflate this layout by a ViewManager by
View.inflate(getApplicationContext(), R.layout.activity_fpv, null); but without solution.
I can only see the original layout without my element ( put over in .js file)
Some ideas? This is my first experience with an RN Native module with layout interaction and I don't have much experience in Android/Java language
add a comment |
I creating an android native module from an existing Java library. This library, make a GLSurfaceView
setEGLContextClientVersion(2);
setRenderer(new GLSurfaceView.Renderer()
@Override
public void onSurfaceCreated(GL10 gl, EGLConfig config)
//Do things
@Override
public void onSurfaceChanged(GL10 gl, int width, int height)
//Do things
@Override
public void onDrawFrame(GL10 gl)
//Do things
);
into an android layout
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.___.FpvActivity">
<com.____.GLSurfaceView
android:layout_width="match_parent"
android:layout_height="match_parent">
</com.____.GLSurfaceView>
</RelativeLayout>
and set it by
setContentView(R.layout.activity_fpv);
What I want to do, is a react native module ( only android ) to include this view into a React Native Component. This View must be in the background of other RN elements.
What I'd tried to do is to inflate this layout by a ViewManager by
View.inflate(getApplicationContext(), R.layout.activity_fpv, null); but without solution.
I can only see the original layout without my element ( put over in .js file)
Some ideas? This is my first experience with an RN Native module with layout interaction and I don't have much experience in Android/Java language
I creating an android native module from an existing Java library. This library, make a GLSurfaceView
setEGLContextClientVersion(2);
setRenderer(new GLSurfaceView.Renderer()
@Override
public void onSurfaceCreated(GL10 gl, EGLConfig config)
//Do things
@Override
public void onSurfaceChanged(GL10 gl, int width, int height)
//Do things
@Override
public void onDrawFrame(GL10 gl)
//Do things
);
into an android layout
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.___.FpvActivity">
<com.____.GLSurfaceView
android:layout_width="match_parent"
android:layout_height="match_parent">
</com.____.GLSurfaceView>
</RelativeLayout>
and set it by
setContentView(R.layout.activity_fpv);
What I want to do, is a react native module ( only android ) to include this view into a React Native Component. This View must be in the background of other RN elements.
What I'd tried to do is to inflate this layout by a ViewManager by
View.inflate(getApplicationContext(), R.layout.activity_fpv, null); but without solution.
I can only see the original layout without my element ( put over in .js file)
Some ideas? This is my first experience with an RN Native module with layout interaction and I don't have much experience in Android/Java language
edited Mar 22 at 6:35
John Joe
5,00032361
5,00032361
asked Mar 21 at 16:31
SkiddoloSkiddolo
83
83
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55285135%2fandroid-layout-into-react-native-view%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55285135%2fandroid-layout-into-react-native-view%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown