<?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: Displaying a map from my Mobile Server in ArcGIS Runtime SDK for Android Questions</title>
    <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/displaying-a-map-from-my-mobile-server/m-p/131533#M964</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;@MeloKing I'm trying to create an android application and The videos looks like a great place to start... Thanks!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 08 Jul 2012 16:39:43 GMT</pubDate>
    <dc:creator>NicoTek</dc:creator>
    <dc:date>2012-07-08T16:39:43Z</dc:date>
    <item>
      <title>Displaying a map from my Mobile Server</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/displaying-a-map-from-my-mobile-server/m-p/131531#M962</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello Everyone,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm new to the ArcGIS Android SDK.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm trying to display one of the maps I have in a ArcGIS Mobile Server.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When I use the esri arcGIS app from the Android Playstore I can connect to my server and see the map easily, but I would like to create my own app so that people don't have to enter my server info.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any pointers or tips are greatly appreciated.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Nico&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jul 2012 13:43:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/displaying-a-map-from-my-mobile-server/m-p/131531#M962</guid>
      <dc:creator>NicoTek</dc:creator>
      <dc:date>2012-07-06T13:43:17Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying a map from my Mobile Server</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/displaying-a-map-from-my-mobile-server/m-p/131532#M963</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Are you wanting to create a native Android Application? If so, I'd recommend checking out the videos from the Developers conference.&amp;nbsp; Here is a link to all the Android videos: &lt;/SPAN&gt;&lt;A href="http://video.esri.com/search/android"&gt;http://video.esri.com/search/android&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Jul 2012 18:43:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/displaying-a-map-from-my-mobile-server/m-p/131532#M963</guid>
      <dc:creator>Town_ofSnowflake</dc:creator>
      <dc:date>2012-07-07T18:43:37Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying a map from my Mobile Server</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/displaying-a-map-from-my-mobile-server/m-p/131533#M964</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;@MeloKing I'm trying to create an android application and The videos looks like a great place to start... Thanks!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 08 Jul 2012 16:39:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/displaying-a-map-from-my-mobile-server/m-p/131533#M964</guid>
      <dc:creator>NicoTek</dc:creator>
      <dc:date>2012-07-08T16:39:43Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying a map from my Mobile Server</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/displaying-a-map-from-my-mobile-server/m-p/131534#M965</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I was able to display the map layers that were hosted in the mobile server by creating a DynamicMapServiceLayer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is a small code snippet where I create two layers. the first one is the esri base map and the second one is my layer from the mobile server where I make visible the layers 0,1,2&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt; public void onCreate(Bundle savedInstanceState) { &amp;nbsp; super.onCreate(savedInstanceState); &amp;nbsp; map = new MapView(this); &amp;nbsp;&amp;nbsp; &amp;nbsp; ArcGISTiledMapServiceLayer basemap = new ArcGISTiledMapServiceLayer("http://server.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer"); &amp;nbsp; map.addLayer(basemap); &amp;nbsp; ArcGISDynamicMapServiceLayer layer = new ArcGISDynamicMapServiceLayer("my_mobile_server_url/MapServer",new int[] {0,1,2}); &amp;nbsp; map.addLayer(layer); &lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jul 2012 11:39:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/displaying-a-map-from-my-mobile-server/m-p/131534#M965</guid>
      <dc:creator>NicoTek</dc:creator>
      <dc:date>2012-07-16T11:39:42Z</dc:date>
    </item>
  </channel>
</rss>

