<?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: Query on mobile map package (mmpk) in ArcGIS Runtime SDK for Android Questions</title>
    <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/query-on-mobile-map-package-mmpk/m-p/523078#M3562</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can first open the mobile map package to get the map(s) containing your vector (feature) layers that contain the polygons you want to get.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// create a map view&lt;BR /&gt; mapView = new MapView();&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//load a mobile map package&lt;BR /&gt; final String mmpkPath&amp;nbsp; = new File("./samples-data/mmpk/Yellowstone.mmpk").getAbsolutePath();&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;STRONG&gt;MobileMapPackage mobileMapPackage = new MobileMapPackage(mmpkPath);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mobileMapPackage.loadAsync();mobileMapPackage.addDoneLoadingListener(() -&amp;gt; {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;if (mobileMapPackage.getLoadStatus() == LoadStatus.LOADED &amp;amp;&amp;amp; mobileMapPackage.getMaps().size() &amp;gt; 0) {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //add the map from the mobile map package to the map view&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;STRONG&gt;mapView.setMap(mobileMapPackage.getMaps().get(0));&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;} else {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Alert alert = new Alert(Alert.AlertType.ERROR, "Failed to load the mobile map package");&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;alert.show();&lt;BR /&gt;&amp;nbsp; &amp;nbsp; }&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will now have access to the map's operational layers, and you can find the one you need from that list. Just like any other feature layer from any other data source, you can query for Segids and Pages, using &lt;A href="https://developers.arcgis.com/android/latest/api-reference/reference/com/esri/arcgisruntime/layers/FeatureLayer.html#selectFeaturesAsync(com.esri.arcgisruntime.data.QueryParameters,%20com.esri.arcgisruntime.layers.FeatureLayer.SelectionMode)"&gt;FeatureLayer.selectFeaturesAsync&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;The FeatureQueryResult will give you access to the number of selected segids and pages.&lt;/P&gt;&lt;P&gt;You can iterate through each feature in the result, collect the geometry extent for each polygon, merge them using GeometryEngine, then zoom to the merged geometries using MapView.setViewpointGeometryAsync() -&amp;nbsp;&lt;A class="link-titled" href="https://developers.arcgis.com/android/latest/api-reference/reference/com/esri/arcgisruntime/mapping/view/MapView.html#setViewpointGeometryAsync(com.esri.arcgisruntime.geometry.Geometry)" title="https://developers.arcgis.com/android/latest/api-reference/reference/com/esri/arcgisruntime/mapping/view/MapView.html#setViewpointGeometryAsync(com.esri.arcgisruntime.geometry.Geometry)"&gt;MapView| arcgis-android&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think some good examples to look at are:&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://developers.arcgis.com/android/latest/sample-code/open-mobile-map-package.htm" title="https://developers.arcgis.com/android/latest/sample-code/open-mobile-map-package.htm"&gt;Open Mobile Map Package—ArcGIS Runtime SDK for Android | ArcGIS for Developers&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://developers.arcgis.com/android/latest/sample-code/feature-layer-query.htm" title="https://developers.arcgis.com/android/latest/sample-code/feature-layer-query.htm"&gt;Feature Layer Query—ArcGIS Runtime SDK for Android | ArcGIS for Developers&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 30 Jun 2018 21:38:51 GMT</pubDate>
    <dc:creator>EricBader</dc:creator>
    <dc:date>2018-06-30T21:38:51Z</dc:date>
    <item>
      <title>Query on mobile map package (mmpk)</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/query-on-mobile-map-package-mmpk/m-p/523077#M3561</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;BACKGROUND&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I am using the ArcGIS Runtime SDK for Andorid (100.2.1).&lt;/P&gt;&lt;P&gt;I am being provided with mobile map packages (mmpk) by my GIS department. The mmpks contain several vector layers - one layer has an attribute named "Page". Another layer has an attribute named "Segid". The layers containing "Page" and "Segid" shapes are polygons that I would like to programatically select and zoom to.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, using&amp;nbsp;&lt;SPAN&gt;ArcGIS Runtime SDK for Andorid (100.2.1)...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;QUESTIONS&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;How do I query for a list of "Segid"s and/or "Page"s contained in the mmpk?&lt;/LI&gt;&lt;LI&gt;How do I get a count of the number of&amp;nbsp;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;S&lt;/SPAN&gt;&lt;SPAN&gt;egid"s and/or "Page"s contained in the mmpk?&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;How do I select a polygon ("Page" or "Segid") feature and zoom to it?&lt;/LI&gt;&lt;/UL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jun 2018 20:31:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/query-on-mobile-map-package-mmpk/m-p/523077#M3561</guid>
      <dc:creator>CharlesLoftis</dc:creator>
      <dc:date>2018-06-27T20:31:25Z</dc:date>
    </item>
    <item>
      <title>Re: Query on mobile map package (mmpk)</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/query-on-mobile-map-package-mmpk/m-p/523078#M3562</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can first open the mobile map package to get the map(s) containing your vector (feature) layers that contain the polygons you want to get.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// create a map view&lt;BR /&gt; mapView = new MapView();&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//load a mobile map package&lt;BR /&gt; final String mmpkPath&amp;nbsp; = new File("./samples-data/mmpk/Yellowstone.mmpk").getAbsolutePath();&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;STRONG&gt;MobileMapPackage mobileMapPackage = new MobileMapPackage(mmpkPath);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mobileMapPackage.loadAsync();mobileMapPackage.addDoneLoadingListener(() -&amp;gt; {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;if (mobileMapPackage.getLoadStatus() == LoadStatus.LOADED &amp;amp;&amp;amp; mobileMapPackage.getMaps().size() &amp;gt; 0) {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //add the map from the mobile map package to the map view&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;STRONG&gt;mapView.setMap(mobileMapPackage.getMaps().get(0));&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;} else {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Alert alert = new Alert(Alert.AlertType.ERROR, "Failed to load the mobile map package");&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;alert.show();&lt;BR /&gt;&amp;nbsp; &amp;nbsp; }&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will now have access to the map's operational layers, and you can find the one you need from that list. Just like any other feature layer from any other data source, you can query for Segids and Pages, using &lt;A href="https://developers.arcgis.com/android/latest/api-reference/reference/com/esri/arcgisruntime/layers/FeatureLayer.html#selectFeaturesAsync(com.esri.arcgisruntime.data.QueryParameters,%20com.esri.arcgisruntime.layers.FeatureLayer.SelectionMode)"&gt;FeatureLayer.selectFeaturesAsync&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;The FeatureQueryResult will give you access to the number of selected segids and pages.&lt;/P&gt;&lt;P&gt;You can iterate through each feature in the result, collect the geometry extent for each polygon, merge them using GeometryEngine, then zoom to the merged geometries using MapView.setViewpointGeometryAsync() -&amp;nbsp;&lt;A class="link-titled" href="https://developers.arcgis.com/android/latest/api-reference/reference/com/esri/arcgisruntime/mapping/view/MapView.html#setViewpointGeometryAsync(com.esri.arcgisruntime.geometry.Geometry)" title="https://developers.arcgis.com/android/latest/api-reference/reference/com/esri/arcgisruntime/mapping/view/MapView.html#setViewpointGeometryAsync(com.esri.arcgisruntime.geometry.Geometry)"&gt;MapView| arcgis-android&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think some good examples to look at are:&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://developers.arcgis.com/android/latest/sample-code/open-mobile-map-package.htm" title="https://developers.arcgis.com/android/latest/sample-code/open-mobile-map-package.htm"&gt;Open Mobile Map Package—ArcGIS Runtime SDK for Android | ArcGIS for Developers&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://developers.arcgis.com/android/latest/sample-code/feature-layer-query.htm" title="https://developers.arcgis.com/android/latest/sample-code/feature-layer-query.htm"&gt;Feature Layer Query—ArcGIS Runtime SDK for Android | ArcGIS for Developers&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 Jun 2018 21:38:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/query-on-mobile-map-package-mmpk/m-p/523078#M3562</guid>
      <dc:creator>EricBader</dc:creator>
      <dc:date>2018-06-30T21:38:51Z</dc:date>
    </item>
    <item>
      <title>Re: Query on mobile map package (mmpk)</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/query-on-mobile-map-package-mmpk/m-p/523079#M3563</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Eric,&lt;/P&gt;&lt;P&gt;Thanks for the reply. I reviewed both of the examples you linked and found them helpful. Pasted below&amp;nbsp;is the code that I've come up with - it works, but I'm having to query each layer because I don't know the name of the layer that contains the "Page" numbers. (I'm not creating my own mmpks, just consuming ones that have been previously created by my GIS group.) This works but throws Exceptions (that are being caught and ignored) - not very elegant. If I knew the name of the layer containing the "Page" attributes I could just query the layer of interest.&amp;nbsp;Is there a way to query the map for a specific layer (by name?) or is accessing a specific layer an exercise in iterating through all the operational layers as I've done below?&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LayerList mMapOperationalLayers = &lt;SPAN style="color: #660e7a; font-weight: bold;"&gt;arcGISMap&lt;/SPAN&gt;.getOperationalLayers(); &lt;SPAN style="color: #808080;"&gt;// get LayerList from Map
&lt;/SPAN&gt;&lt;SPAN style="color: #808080;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #000080; font-weight: bold;"&gt;for &lt;/SPAN&gt;(&lt;SPAN style="color: #000080; font-weight: bold;"&gt;final &lt;/SPAN&gt;Layer layer : mMapOperationalLayers) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Log.&lt;SPAN&gt;d&lt;/SPAN&gt;(&lt;SPAN style="color: #008000; font-weight: bold;"&gt;"layer"&lt;/SPAN&gt;, layer.getName() + &lt;SPAN style="color: #008000; font-weight: bold;"&gt;", " &lt;/SPAN&gt;+ layer.getFullExtent().toJson());
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FeatureLayer featureLayer = (FeatureLayer) layer;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FeatureTable featureTable = featureLayer.getFeatureTable();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; QueryParameters queryParameters = &lt;SPAN style="color: #000080; font-weight: bold;"&gt;new &lt;/SPAN&gt;QueryParameters();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; queryParameters.setWhereClause(String.&lt;SPAN&gt;format&lt;/SPAN&gt;(&lt;SPAN style="color: #008000; font-weight: bold;"&gt;"PAGE=%1$s"&lt;/SPAN&gt;, page_number));
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #000080; font-weight: bold;"&gt;final &lt;/SPAN&gt;ListenableFuture listenableFuture = featureTable.queryFeaturesAsync(queryParameters);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; listenableFuture.addDoneListener(&lt;SPAN style="color: #000080; font-weight: bold;"&gt;new &lt;/SPAN&gt;Runnable() {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #808000;"&gt;@Override
&lt;/SPAN&gt;&lt;SPAN style="color: #808000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #000080; font-weight: bold;"&gt;public void &lt;/SPAN&gt;run() {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #000080; font-weight: bold;"&gt;try &lt;/SPAN&gt;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Object result = &lt;SPAN style="color: #660e7a;"&gt;listenableFuture&lt;/SPAN&gt;.get();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FeatureQueryResult featureQueyResult = (FeatureQueryResult) result;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #000080; font-weight: bold;"&gt;if &lt;/SPAN&gt;(featureQueyResult.iterator().hasNext()) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #808080;"&gt;// get extent of 1st feature in result &amp;amp; zoom to it
&lt;/SPAN&gt;&lt;SPAN style="color: #808080;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;Feature feature = featureQueyResult.iterator().next();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Envelope envelope = feature.getGeometry().getExtent();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #660e7a; font-weight: bold;"&gt;mMapView&lt;/SPAN&gt;.setViewpointGeometryAsync(envelope, &lt;SPAN style="color: #0000ff;"&gt;50&lt;/SPAN&gt;);
&lt;SPAN style="color: #808080;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Select the feature
&lt;/SPAN&gt;&lt;SPAN style="color: #808080;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //((FeatureLayer) layer).selectFeature(feature);
&lt;/SPAN&gt;&lt;SPAN style="color: #808080;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;} &lt;SPAN style="color: #000080; font-weight: bold;"&gt;else &lt;/SPAN&gt;{
&lt;SPAN style="color: #808080;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Toast.makeText(MainActivity.this, "No page found with number: " + page_number, Toast.LENGTH_SHORT).show();
&lt;/SPAN&gt;&lt;SPAN style="color: #808080;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;}
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } &lt;SPAN style="color: #000080; font-weight: bold;"&gt;catch &lt;/SPAN&gt;(Exception e) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Log.&lt;SPAN&gt;e&lt;/SPAN&gt;(&lt;SPAN style="color: #660e7a; font-weight: bold;"&gt;TAG&lt;/SPAN&gt;, e.getMessage());
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 22:48:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/query-on-mobile-map-package-mmpk/m-p/523079#M3563</guid>
      <dc:creator>CharlesLoftis</dc:creator>
      <dc:date>2021-12-11T22:48:15Z</dc:date>
    </item>
  </channel>
</rss>

