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()?










1















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










share|improve this question




























    1















    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










    share|improve this question


























      1












      1








      1








      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










      share|improve this question
















      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







      android android-layout react-native android-linearlayout react-native-component






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 22 at 6:35









      John Joe

      5,00032361




      5,00032361










      asked Mar 21 at 16:31









      SkiddoloSkiddolo

      83




      83






















          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
          );



          );













          draft saved

          draft discarded


















          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















          draft saved

          draft discarded
















































          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.




          draft saved


          draft discarded














          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





















































          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







          Popular posts from this blog

          SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

          용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

          155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해