How to bind generic Java classes in Android binding project in Xamarin?












2














I have to bind generic Java class in Android binding project in Xamarin. Below is the code for normal class binding I added in metadata.xml.



<add-node path="/api/package[@name='com.phunware.mapping.manager']">
<interface abstract="true" deprecated="not deprecated" extends="java.lang.Object" extends-generic-aware="java.lang.Object" final="false" name="Callback" static="false" visibility="public">
<method abstract="true" deprecated="not deprecated" final="false" name="onSuccess" native="false" return="void" static="false" synchronized="false" visibility="public">
<parameter name="building" type="com.phunware.mapping.model.Building"/>
</method>
</interface>
</add-node>

<add-node path="/api/package[@name='com.phunware.mapping.manager']/class[@name='PhunwareMapManager']">
<method abstract="false" deprecated="not deprecated" final="false" name="addBuilding" native="false" return="com.phunware.mapping.manager.PhunwareMapManager" static="false" synchronized="false" visibility="public">
<parameter name="buildingId" type="long"/>
<parameter name="callback" type="com.phunware.mapping.manager.Callback"/>
</method>
</add-node>


Equivalent java classes and methods getting binded are as below.



package com.phunware.mapping.manager;

public interface Callback<T> {
void onSuccess(T var1);

void onFailure(Throwable var1);
}

mapManager.addBuilding(buildingId,
new Callback<Building>() {
@Override
public void onSuccess(Building building) {
Log.d(TAG, "Building loaded successfully");
currentBuilding = building;

// Populate floor spinner
spinnerAdapter.clear();
spinnerAdapter.addAll(building.getBuildingOptions().getFloors());

// Set building to initial floor value
FloorOptions initialFloor = building.initialFloor();
building.selectFloor(initialFloor.getLevel());

// Animate the camera to the building at an appropriate zoom level
CameraUpdate cameraUpdate = CameraUpdateFactory
.newLatLngBounds(initialFloor.getBounds(), 4);
phunwareMap.getGoogleMap().animateCamera(cameraUpdate);
}


If I try to bind this Callback class as normal class, addBuilding method is not visible as it takes generic class as argument.



Request to help me find a way to handle the generic class in metadata.xml.










share|improve this question





























    2














    I have to bind generic Java class in Android binding project in Xamarin. Below is the code for normal class binding I added in metadata.xml.



    <add-node path="/api/package[@name='com.phunware.mapping.manager']">
    <interface abstract="true" deprecated="not deprecated" extends="java.lang.Object" extends-generic-aware="java.lang.Object" final="false" name="Callback" static="false" visibility="public">
    <method abstract="true" deprecated="not deprecated" final="false" name="onSuccess" native="false" return="void" static="false" synchronized="false" visibility="public">
    <parameter name="building" type="com.phunware.mapping.model.Building"/>
    </method>
    </interface>
    </add-node>

    <add-node path="/api/package[@name='com.phunware.mapping.manager']/class[@name='PhunwareMapManager']">
    <method abstract="false" deprecated="not deprecated" final="false" name="addBuilding" native="false" return="com.phunware.mapping.manager.PhunwareMapManager" static="false" synchronized="false" visibility="public">
    <parameter name="buildingId" type="long"/>
    <parameter name="callback" type="com.phunware.mapping.manager.Callback"/>
    </method>
    </add-node>


    Equivalent java classes and methods getting binded are as below.



    package com.phunware.mapping.manager;

    public interface Callback<T> {
    void onSuccess(T var1);

    void onFailure(Throwable var1);
    }

    mapManager.addBuilding(buildingId,
    new Callback<Building>() {
    @Override
    public void onSuccess(Building building) {
    Log.d(TAG, "Building loaded successfully");
    currentBuilding = building;

    // Populate floor spinner
    spinnerAdapter.clear();
    spinnerAdapter.addAll(building.getBuildingOptions().getFloors());

    // Set building to initial floor value
    FloorOptions initialFloor = building.initialFloor();
    building.selectFloor(initialFloor.getLevel());

    // Animate the camera to the building at an appropriate zoom level
    CameraUpdate cameraUpdate = CameraUpdateFactory
    .newLatLngBounds(initialFloor.getBounds(), 4);
    phunwareMap.getGoogleMap().animateCamera(cameraUpdate);
    }


    If I try to bind this Callback class as normal class, addBuilding method is not visible as it takes generic class as argument.



    Request to help me find a way to handle the generic class in metadata.xml.










    share|improve this question



























      2












      2








      2


      1





      I have to bind generic Java class in Android binding project in Xamarin. Below is the code for normal class binding I added in metadata.xml.



      <add-node path="/api/package[@name='com.phunware.mapping.manager']">
      <interface abstract="true" deprecated="not deprecated" extends="java.lang.Object" extends-generic-aware="java.lang.Object" final="false" name="Callback" static="false" visibility="public">
      <method abstract="true" deprecated="not deprecated" final="false" name="onSuccess" native="false" return="void" static="false" synchronized="false" visibility="public">
      <parameter name="building" type="com.phunware.mapping.model.Building"/>
      </method>
      </interface>
      </add-node>

      <add-node path="/api/package[@name='com.phunware.mapping.manager']/class[@name='PhunwareMapManager']">
      <method abstract="false" deprecated="not deprecated" final="false" name="addBuilding" native="false" return="com.phunware.mapping.manager.PhunwareMapManager" static="false" synchronized="false" visibility="public">
      <parameter name="buildingId" type="long"/>
      <parameter name="callback" type="com.phunware.mapping.manager.Callback"/>
      </method>
      </add-node>


      Equivalent java classes and methods getting binded are as below.



      package com.phunware.mapping.manager;

      public interface Callback<T> {
      void onSuccess(T var1);

      void onFailure(Throwable var1);
      }

      mapManager.addBuilding(buildingId,
      new Callback<Building>() {
      @Override
      public void onSuccess(Building building) {
      Log.d(TAG, "Building loaded successfully");
      currentBuilding = building;

      // Populate floor spinner
      spinnerAdapter.clear();
      spinnerAdapter.addAll(building.getBuildingOptions().getFloors());

      // Set building to initial floor value
      FloorOptions initialFloor = building.initialFloor();
      building.selectFloor(initialFloor.getLevel());

      // Animate the camera to the building at an appropriate zoom level
      CameraUpdate cameraUpdate = CameraUpdateFactory
      .newLatLngBounds(initialFloor.getBounds(), 4);
      phunwareMap.getGoogleMap().animateCamera(cameraUpdate);
      }


      If I try to bind this Callback class as normal class, addBuilding method is not visible as it takes generic class as argument.



      Request to help me find a way to handle the generic class in metadata.xml.










      share|improve this question















      I have to bind generic Java class in Android binding project in Xamarin. Below is the code for normal class binding I added in metadata.xml.



      <add-node path="/api/package[@name='com.phunware.mapping.manager']">
      <interface abstract="true" deprecated="not deprecated" extends="java.lang.Object" extends-generic-aware="java.lang.Object" final="false" name="Callback" static="false" visibility="public">
      <method abstract="true" deprecated="not deprecated" final="false" name="onSuccess" native="false" return="void" static="false" synchronized="false" visibility="public">
      <parameter name="building" type="com.phunware.mapping.model.Building"/>
      </method>
      </interface>
      </add-node>

      <add-node path="/api/package[@name='com.phunware.mapping.manager']/class[@name='PhunwareMapManager']">
      <method abstract="false" deprecated="not deprecated" final="false" name="addBuilding" native="false" return="com.phunware.mapping.manager.PhunwareMapManager" static="false" synchronized="false" visibility="public">
      <parameter name="buildingId" type="long"/>
      <parameter name="callback" type="com.phunware.mapping.manager.Callback"/>
      </method>
      </add-node>


      Equivalent java classes and methods getting binded are as below.



      package com.phunware.mapping.manager;

      public interface Callback<T> {
      void onSuccess(T var1);

      void onFailure(Throwable var1);
      }

      mapManager.addBuilding(buildingId,
      new Callback<Building>() {
      @Override
      public void onSuccess(Building building) {
      Log.d(TAG, "Building loaded successfully");
      currentBuilding = building;

      // Populate floor spinner
      spinnerAdapter.clear();
      spinnerAdapter.addAll(building.getBuildingOptions().getFloors());

      // Set building to initial floor value
      FloorOptions initialFloor = building.initialFloor();
      building.selectFloor(initialFloor.getLevel());

      // Animate the camera to the building at an appropriate zoom level
      CameraUpdate cameraUpdate = CameraUpdateFactory
      .newLatLngBounds(initialFloor.getBounds(), 4);
      phunwareMap.getGoogleMap().animateCamera(cameraUpdate);
      }


      If I try to bind this Callback class as normal class, addBuilding method is not visible as it takes generic class as argument.



      Request to help me find a way to handle the generic class in metadata.xml.







      android xamarin java-binding






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 16 at 6:18









      shizhen

      2,6573728




      2,6573728










      asked Nov 16 at 6:10









      Ramesh

      91211026




      91211026





























          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%2f53332359%2fhow-to-bind-generic-java-classes-in-android-binding-project-in-xamarin%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown






























          active

          oldest

          votes













          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.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • 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%2f53332359%2fhow-to-bind-generic-java-classes-in-android-binding-project-in-xamarin%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

          Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

          ComboBox Display Member on multiple fields

          Is it possible to collect Nectar points via Trainline?