<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Can not add my own map to the android application in ArcGIS Runtime SDK for Android Questions</title>
    <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/can-not-add-my-own-map-to-the-android-application/m-p/166447#M1128</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello Andygup,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you for the response it worked perfectly but wonder why it was not included in the tutorial for first timers like me.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Anyway I kept trying to have the popup with the info in each district but it does not appear and i tried to enable the popups but failed also tried to use the application as a feature layer but still can't figure out how to bring display the popups that are in the original web map to display in the android app.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks again for the great help and sorry for the late reply.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 14 Aug 2013 07:34:35 GMT</pubDate>
    <dc:creator>EstherKunda</dc:creator>
    <dc:date>2013-08-14T07:34:35Z</dc:date>
    <item>
      <title>Can not add my own map to the android application</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/can-not-add-my-own-map-to-the-android-application/m-p/166445#M1126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am new to Arcgis android and i wanted to add my own map: &lt;/SPAN&gt;&lt;A href="http://www.arcgis.com/home/webmap/viewer.html?webmap=f8ab9f0b818b4ece966c4b2cf91fa0c1"&gt;http://www.arcgis.com/home/webmap/viewer.html?webmap=f8ab9f0b818b4ece966c4b2cf91fa0c1&lt;/A&gt;&lt;SPAN&gt; with the data layer visible but only the basemap is displaying.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jul 2013 07:24:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/can-not-add-my-own-map-to-the-android-application/m-p/166445#M1126</guid>
      <dc:creator>EstherKunda</dc:creator>
      <dc:date>2013-07-26T07:24:15Z</dc:date>
    </item>
    <item>
      <title>Re: Can not add my own map to the android application</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/can-not-add-my-own-map-to-the-android-application/m-p/166446#M1127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Esther, make sure you are using the coding pattern for a "web map", which is a map created on ArcGIS.com.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;package com.esri.arcgis.android.samples.webmap;

import android.app.Activity;
import android.os.Bundle;

import com.esri.android.map.MapView;

public class WebMap extends Activity {
 MapView mMapView = null;

 @Override
 public void onCreate(Bundle savedInstanceState) {
&amp;nbsp; super.onCreate(savedInstanceState);
&amp;nbsp; 
&amp;nbsp; mMapView = new MapView(
&amp;nbsp;&amp;nbsp;&amp;nbsp; getApplicationContext(), 
&amp;nbsp;&amp;nbsp;&amp;nbsp; "http://www.arcgis.com/home/item.html?id=f8ab9f0b818b4ece966c4b2cf91fa0c1",
&amp;nbsp;&amp;nbsp;&amp;nbsp; null, null);
&amp;nbsp; setContentView(mMapView);
&amp;nbsp; 
 }
 
 @Override
 protected void onPause() {
&amp;nbsp; super.onPause();
&amp;nbsp; mMapView.pause();
 }

 @Override
 protected void onResume() {
&amp;nbsp; super.onResume(); 
&amp;nbsp; mMapView.unpause();
 } 
 
}&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 08:41:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/can-not-add-my-own-map-to-the-android-application/m-p/166446#M1127</guid>
      <dc:creator>AndyGup</dc:creator>
      <dc:date>2021-12-11T08:41:01Z</dc:date>
    </item>
    <item>
      <title>Re: Can not add my own map to the android application</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/can-not-add-my-own-map-to-the-android-application/m-p/166447#M1128</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello Andygup,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you for the response it worked perfectly but wonder why it was not included in the tutorial for first timers like me.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Anyway I kept trying to have the popup with the info in each district but it does not appear and i tried to enable the popups but failed also tried to use the application as a feature layer but still can't figure out how to bring display the popups that are in the original web map to display in the android app.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks again for the great help and sorry for the late reply.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Aug 2013 07:34:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/can-not-add-my-own-map-to-the-android-application/m-p/166447#M1128</guid>
      <dc:creator>EstherKunda</dc:creator>
      <dc:date>2013-08-14T07:34:35Z</dc:date>
    </item>
    <item>
      <title>Re: Can not add my own map to the android application</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/can-not-add-my-own-map-to-the-android-application/m-p/166448#M1129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I happen to have the same problem as Esther, but when I attempted to use this code, AndroidStudio wouldn't let me import the MapView class like you did at the top. How do I fix this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jan 2018 19:32:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/can-not-add-my-own-map-to-the-android-application/m-p/166448#M1129</guid>
      <dc:creator>ReenaMedavarapu</dc:creator>
      <dc:date>2018-01-22T19:32:16Z</dc:date>
    </item>
    <item>
      <title>Re: Can not add my own map to the android application</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/can-not-add-my-own-map-to-the-android-application/m-p/166449#M1130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Reena, can you confirm that you've followed the steps in this tutorial?&amp;nbsp;&lt;A class="link-titled" href="https://developers.arcgis.com/android/latest/guide/develop-your-first-map-app.htm" title="https://developers.arcgis.com/android/latest/guide/develop-your-first-map-app.htm"&gt;Develop your first map app with Java—ArcGIS Runtime SDK for Android | ArcGIS for Developers&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jan 2018 03:43:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/can-not-add-my-own-map-to-the-android-application/m-p/166449#M1130</guid>
      <dc:creator>EricBader</dc:creator>
      <dc:date>2018-01-25T03:43:27Z</dc:date>
    </item>
    <item>
      <title>Re: Can not add my own map to the android application</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/can-not-add-my-own-map-to-the-android-application/m-p/166450#M1131</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Esther - you might find some of the Dev Labs useful - we have a Dev Lab which covers displaying a web map in a simple Android app -&amp;nbsp;&lt;A class="link-titled" href="https://developers.arcgis.com/labs/android/display-a-web-map/" title="https://developers.arcgis.com/labs/android/display-a-web-map/"&gt;Display a web map | ArcGIS for Developers&lt;/A&gt;&amp;nbsp; (this builds on&amp;nbsp;a basic app where you create a map directly in code - just like the initial tutorial you followed). You can find all of the Android-specific Dev Labs here -&amp;nbsp;&lt;A class="link-titled" href="https://developers.arcgis.com/labs/browse/?topic=any&amp;amp;product=Android" title="https://developers.arcgis.com/labs/browse/?topic=any&amp;amp;product=Android"&gt;Browse ArcGIS DevLabs | ArcGIS for Developers&lt;/A&gt;&amp;nbsp; - there's also Dev Labs for users new to ArcGIS, covering importing and preparing data, and designing and configuring maps, so possibly you'll find these useful as well? (Not sure if you're also new to ArcGIS generally, or just the ArcGIS Runtime SDK for Android) -&amp;nbsp;&lt;A class="link-titled" href="https://developers.arcgis.com/labs/" title="https://developers.arcgis.com/labs/"&gt;Get Started with ArcGIS DevLabs | ArcGIS for Developers&lt;/A&gt;&amp;nbsp;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Shelly&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jan 2018 11:24:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/can-not-add-my-own-map-to-the-android-application/m-p/166450#M1131</guid>
      <dc:creator>ShellyGill1</dc:creator>
      <dc:date>2018-01-25T11:24:25Z</dc:date>
    </item>
  </channel>
</rss>

