<?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: SketchEdit not work with Magnifier in draw new Graphic? in ArcGIS Runtime SDK for Android Questions</title>
    <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/sketchedit-not-work-with-magnifier-in-draw-new/m-p/114001#M841</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Look at the branch&amp;nbsp;&lt;A href="https://github.com/Esri/arcgis-runtime-samples-android/tree/cs/sketch_editor_magnifier_work_around"&gt;https://github.com/Esri/arcgis-runtime-samples-android/tree/cs/sketch_editor_magnifier_work_around&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;Go to &lt;STRONG&gt;sketch-editor&lt;/STRONG&gt; sample,&amp;nbsp; which illustrates the workaround in the main activity.&amp;nbsp; There is a button in the MapView to allow to enable magnifier during sketching. When the release is up, the magnifier will add a sketch vertex.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 22 Jul 2019 23:32:22 GMT</pubDate>
    <dc:creator>ChanganShi</dc:creator>
    <dc:date>2019-07-22T23:32:22Z</dc:date>
    <item>
      <title>SketchEdit not work with Magnifier in draw new Graphic?</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/sketchedit-not-work-with-magnifier-in-draw-new/m-p/113998#M838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Cannot add new vertex when draw new graphic with Magnifier. Without Magnifier everything is fine. We test on 100.5. Please help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jul 2019 04:41:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/sketchedit-not-work-with-magnifier-in-draw-new/m-p/113998#M838</guid>
      <dc:creator>PhamTheVinh</dc:creator>
      <dc:date>2019-07-15T04:41:08Z</dc:date>
    </item>
    <item>
      <title>Re: SketchEdit not work with Magnifier in draw new Graphic?</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/sketchedit-not-work-with-magnifier-in-draw-new/m-p/113999#M839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Currently, SketchEdtior doesn't work with the magnifier seamlessly.&amp;nbsp; By default, when the magnifier is released up, it doesn't do anything.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is a workaround for your consideration :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. The workflow is to create&amp;nbsp;a new inner TouchListener class to the class where your &lt;EM&gt;MapView&lt;/EM&gt; resides, swap the default sketch touch listener when you want to enable the magnifier to add a vertex when it is released, and swap back the original sketch touch listener. The like this :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;SPAN&gt;private &lt;/SPAN&gt;DefaultMapViewOnTouchListener &lt;SPAN style="color: #9876aa;"&gt;mSketchEventListenerRestore&lt;/SPAN&gt;;
&lt;SPAN&gt;private &lt;/SPAN&gt;AddVertexMagnifierListener &lt;SPAN style="color: #9876aa;"&gt;mAddVertexMagnifierListener&lt;/SPAN&gt;;&lt;/PRE&gt;&lt;SPAN style="color: #cc7832;"&gt;&lt;BR /&gt;&lt;BR /&gt;class &lt;/SPAN&gt;AddVertexMagnifierListener &lt;SPAN style="color: #cc7832;"&gt;extends &lt;/SPAN&gt;DefaultMapViewOnTouchListener {&lt;BR /&gt;&lt;BR /&gt; &lt;SPAN style="color: #629755;"&gt;/**&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #629755;"&gt; * Constructs a DefaultMapViewOnTouchListener with the given Context and MapView.&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #629755;"&gt; *&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #629755;"&gt; * @param &lt;/SPAN&gt;&lt;SPAN style="color: #8a653b;"&gt;context &lt;/SPAN&gt;&lt;SPAN style="color: #629755;"&gt;the context from which this is being created&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #629755;"&gt; * @param &lt;/SPAN&gt;&lt;SPAN style="color: #8a653b;"&gt;mapView &lt;/SPAN&gt;&lt;SPAN style="color: #629755;"&gt;the MapView with which to interact&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #629755;"&gt; * @since 100.0.0&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #629755;"&gt; */&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #629755;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;public &lt;/SPAN&gt;&lt;SPAN style="color: #ffc66d;"&gt;AddVertexMagnifierListener&lt;/SPAN&gt;(Context context, MapView mapView) {&lt;BR /&gt; &lt;SPAN style="color: #cc7832;"&gt;super&lt;/SPAN&gt;(context, mapView);&lt;BR /&gt; }&lt;BR /&gt;&lt;BR /&gt; &lt;SPAN style="color: #bbb529;"&gt;@Override &lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;public boolean &lt;/SPAN&gt;&lt;SPAN style="color: #ffc66d;"&gt;onUp&lt;/SPAN&gt;(MotionEvent e) {&lt;BR /&gt; &lt;SPAN style="color: #cc7832;"&gt;boolean &lt;/SPAN&gt;ret = &lt;SPAN style="color: #cc7832;"&gt;super&lt;/SPAN&gt;.&lt;SPAN style="color: #cc7833;"&gt;onUp&lt;/SPAN&gt;(e);&lt;BR /&gt; &lt;SPAN style="color: #808080;"&gt;//Check condition to add a vertex when the magnifier is up.&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #808080;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;boolean &lt;/SPAN&gt;isStarted = &lt;SPAN style="color: #9876aa;"&gt;mMapView&lt;/SPAN&gt;.&lt;SPAN style="color: #cc7833;"&gt;isMagnifierEnabled&lt;/SPAN&gt;(); &lt;SPAN style="color: #808080;"&gt;//&amp;amp;&amp;amp; SketchEditor is started&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #808080;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;if &lt;/SPAN&gt;(isStarted) {&lt;BR /&gt; Point point = &lt;SPAN style="color: #9876aa;"&gt;mMapView&lt;/SPAN&gt;.&lt;SPAN style="color: #cc7833;"&gt;screenToLocation&lt;/SPAN&gt;(&lt;SPAN style="color: #cc7832;"&gt;new &lt;/SPAN&gt;android.graphics.&lt;SPAN style="color: #cc7833;"&gt;Point&lt;/SPAN&gt;((&lt;SPAN style="color: #cc7832;"&gt;int&lt;/SPAN&gt;)e.&lt;SPAN style="color: #cc7833;"&gt;getX&lt;/SPAN&gt;(), (&lt;SPAN style="color: #cc7832;"&gt;int&lt;/SPAN&gt;)e.&lt;SPAN style="color: #cc7833;"&gt;getY&lt;/SPAN&gt;()));&lt;BR /&gt; &lt;SPAN style="color: #9876aa;"&gt;mSketchEditor&lt;/SPAN&gt;.&lt;SPAN style="color: #cc7833;"&gt;insertVertexAfterSelectedVertex&lt;/SPAN&gt;(point);&lt;BR /&gt; }&lt;BR /&gt; &lt;SPAN style="color: #cc7832;"&gt;return &lt;/SPAN&gt;ret;&lt;BR /&gt; }&lt;BR /&gt;}&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. When you start the SketchEditor, save the default the listener,&amp;nbsp;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;SPAN style="color: #9876aa;"&gt;mSketchEditor&lt;/SPAN&gt;.&lt;SPAN style="color: #cc7833;"&gt;start&lt;/SPAN&gt;(SketchCreationMode.&lt;SPAN style="color: #9876aa;"&gt;POLYGON&lt;/SPAN&gt;, &lt;SPAN style="color: #9876aa;"&gt;mSketchEditor&lt;/SPAN&gt;.&lt;SPAN style="color: #cc7833;"&gt;getSketchEditConfiguration&lt;/SPAN&gt;());
&lt;SPAN style="color: #808080;"&gt;//save the default sketch listener
&lt;/SPAN&gt;&lt;SPAN style="color: #9876aa;"&gt;sketchEventListenerRestore &lt;/SPAN&gt;= (DefaultMapViewOnTouchListener) &lt;SPAN style="color: #9876aa;"&gt;mMapView&lt;/SPAN&gt;.&lt;SPAN style="color: #cc7833;"&gt;getOnTouchListener&lt;/SPAN&gt;();


&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. When you enable the magnifier,&amp;nbsp; use the new touch listener or use the original one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;SPAN style="color: #629755;"&gt;/**
&lt;/SPAN&gt;&lt;SPAN style="color: #629755;"&gt; * Toggles showing the magnifier
&lt;/SPAN&gt;&lt;SPAN style="color: #629755;"&gt; */
&lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;private void &lt;/SPAN&gt;&lt;SPAN style="color: #ffc66d;"&gt;toggleMagnifier&lt;/SPAN&gt;() {
  &lt;SPAN style="color: #9876aa;"&gt;mMapView&lt;/SPAN&gt;.&lt;SPAN style="color: #cc7833;"&gt;setMagnifierEnabled&lt;/SPAN&gt;(!&lt;SPAN style="color: #9876aa;"&gt;mMapView&lt;/SPAN&gt;.&lt;SPAN style="color: #cc7833;"&gt;isMagnifierEnabled&lt;/SPAN&gt;());

  &lt;SPAN style="color: #cc7832;"&gt;if &lt;/SPAN&gt;(&lt;SPAN style="color: #9876aa;"&gt;mMapView&lt;/SPAN&gt;.&lt;SPAN style="color: #cc7833;"&gt;isMagnifierEnabled&lt;/SPAN&gt;()) {
    &lt;SPAN style="color: #cc7832;"&gt;if &lt;/SPAN&gt;(&lt;SPAN style="color: #9876aa;"&gt;mAddVertexMagnifierListener &lt;/SPAN&gt;== &lt;SPAN style="color: #cc7832;"&gt;null&lt;/SPAN&gt;) {
      &lt;SPAN style="color: #9876aa;"&gt;mAddVertexMagnifierListener &lt;/SPAN&gt;= &lt;SPAN style="color: #cc7832;"&gt;new &lt;/SPAN&gt;&lt;SPAN style="color: #cc7833;"&gt;AddVertexMagnifierListener&lt;/SPAN&gt;(&lt;SPAN style="color: #cc7832;"&gt;this&lt;/SPAN&gt;, &lt;SPAN style="color: #9876aa;"&gt;mMapView&lt;/SPAN&gt;);
    }
    &lt;SPAN style="color: #9876aa;"&gt;mMapView&lt;/SPAN&gt;.&lt;SPAN style="color: #cc7833;"&gt;setOnTouchListener&lt;/SPAN&gt;(&lt;SPAN style="color: #9876aa;"&gt;mAddVertexMagnifierListener&lt;/SPAN&gt;);
  } &lt;SPAN style="color: #cc7832;"&gt;else &lt;/SPAN&gt;{
    &lt;SPAN style="color: #9876aa;"&gt;mMapView&lt;/SPAN&gt;.&lt;SPAN style="color: #cc7833;"&gt;setOnTouchListener&lt;/SPAN&gt;(&lt;SPAN style="color: #9876aa;"&gt;mSketchEventListenerRestore&lt;/SPAN&gt;);
  }

  Toast.&lt;SPAN style="color: #ffc66d;"&gt;makeText&lt;/SPAN&gt;(&lt;SPAN style="color: #cc7832;"&gt;this&lt;/SPAN&gt;, &lt;SPAN style="color: #6a8759;"&gt;"Magnifier="&lt;/SPAN&gt;+&lt;SPAN style="color: #9876aa;"&gt;mMapView&lt;/SPAN&gt;.&lt;SPAN style="color: #cc7833;"&gt;isMagnifierEnabled&lt;/SPAN&gt;(), Toast.&lt;SPAN style="color: #9876aa;"&gt;LENGTH_LONG&lt;/SPAN&gt;).&lt;SPAN style="color: #cc7833;"&gt;show&lt;/SPAN&gt;();
}&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this is helpful to you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We may consider making the magnifier work closely with SketchEditor in the future release.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 06:46:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/sketchedit-not-work-with-magnifier-in-draw-new/m-p/113999#M839</guid>
      <dc:creator>ChanganShi</dc:creator>
      <dc:date>2021-12-11T06:46:16Z</dc:date>
    </item>
    <item>
      <title>Re: SketchEdit not work with Magnifier in draw new Graphic?</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/sketchedit-not-work-with-magnifier-in-draw-new/m-p/114000#M840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Changan Shi!&lt;/P&gt;&lt;P&gt;Thanks for your quick reply but I still cannot work&amp;nbsp;&lt;SPAN style="background-color: #ffffff;"&gt;workaround this error because when call&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE style="color: #a9b7c6; background-color: #2b2b2b; border: 0px; font-size: 11.3pt;"&gt;&lt;SPAN style="color: #9876aa; border: 0px; font-weight: inherit; font-size: 15.0667px;"&gt;SketchEditor&lt;/SPAN&gt;.&lt;SPAN style="color: #cc7833; border: 0px; font-weight: inherit; font-size: 15.0667px;"&gt;start&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;The&amp;nbsp;override function&amp;nbsp;onUp&amp;nbsp;of DefaultMapViewOnTouchListener is not called.&amp;nbsp;(So I cannot handler the onUp event)&lt;/P&gt;&lt;P&gt;Please help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jul 2019 11:11:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/sketchedit-not-work-with-magnifier-in-draw-new/m-p/114000#M840</guid>
      <dc:creator>PhamTheVinh</dc:creator>
      <dc:date>2019-07-18T11:11:22Z</dc:date>
    </item>
    <item>
      <title>Re: SketchEdit not work with Magnifier in draw new Graphic?</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/sketchedit-not-work-with-magnifier-in-draw-new/m-p/114001#M841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Look at the branch&amp;nbsp;&lt;A href="https://github.com/Esri/arcgis-runtime-samples-android/tree/cs/sketch_editor_magnifier_work_around"&gt;https://github.com/Esri/arcgis-runtime-samples-android/tree/cs/sketch_editor_magnifier_work_around&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;Go to &lt;STRONG&gt;sketch-editor&lt;/STRONG&gt; sample,&amp;nbsp; which illustrates the workaround in the main activity.&amp;nbsp; There is a button in the MapView to allow to enable magnifier during sketching. When the release is up, the magnifier will add a sketch vertex.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jul 2019 23:32:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/sketchedit-not-work-with-magnifier-in-draw-new/m-p/114001#M841</guid>
      <dc:creator>ChanganShi</dc:creator>
      <dc:date>2019-07-22T23:32:22Z</dc:date>
    </item>
    <item>
      <title>Re: SketchEdit not work with Magnifier in draw new Graphic?</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/sketchedit-not-work-with-magnifier-in-draw-new/m-p/114002#M842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear&amp;nbsp;&lt;A _jive_internal="true" data-userid="295363" data-username="cshi-esristaff" href="https://community.esri.com/people/cshi-esristaff" style="color: #8ca9cd; background-color: #ffffff; border: 0px; font-weight: 200; text-decoration: none; font-size: 1.286rem;"&gt;Changan Shi&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Thanks for you support, but the Add feature by SketchEditor with Magnifier not working properly. user can add vertex with Magnifier but user cannot modify&amp;nbsp;vertex (cannot select vertex to move). Please help!&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jul 2019 09:38:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/sketchedit-not-work-with-magnifier-in-draw-new/m-p/114002#M842</guid>
      <dc:creator>PhamTheVinh</dc:creator>
      <dc:date>2019-07-29T09:38:53Z</dc:date>
    </item>
    <item>
      <title>Re: SketchEdit not work with Magnifier in draw new Graphic?</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/sketchedit-not-work-with-magnifier-in-draw-new/m-p/114003#M843</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you try this, after a vertex is inserted, switch back to use original gesture listener.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE data-tab-size="8" style="color: #24292e; background-color: #ffffff;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="" style="color: #24292e; padding: 0px 10px;"&gt;@Override public boolean onUp(MotionEvent e) {&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="" data-line-number="361" style="color: rgba(27, 31, 35, 0.3); padding: 0px 10px;"&gt;&lt;/TD&gt;&lt;TD class="" style="color: #24292e; padding: 0px 10px;"&gt;boolean ret = super.onUp(e);&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="" data-line-number="362" style="color: rgba(27, 31, 35, 0.3); padding: 0px 10px;"&gt;&lt;/TD&gt;&lt;TD class="" style="color: #24292e; padding: 0px 10px;"&gt;//Check any other condition to add a vertex when the magnifier is up.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="" data-line-number="363" style="color: rgba(27, 31, 35, 0.3); padding: 0px 10px;"&gt;&lt;/TD&gt;&lt;TD class="" style="color: #24292e; padding: 0px 10px;"&gt;boolean isStarted = mMapView.isMagnifierEnabled(); //&amp;amp;&amp;amp; SketchEditor is started&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="" data-line-number="364" style="color: rgba(27, 31, 35, 0.3); padding: 0px 10px;"&gt;&lt;/TD&gt;&lt;TD class="" style="color: #24292e; padding: 0px 10px;"&gt;if (isStarted) {&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="" data-line-number="365" style="color: rgba(27, 31, 35, 0.3); padding: 0px 10px;"&gt;&lt;/TD&gt;&lt;TD class="" style="color: #24292e; padding: 0px 10px;"&gt;Point point = mMapView.screenToLocation(new android.graphics.Point((int)e.getX(), (int)e.getY()));&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="" data-line-number="366" style="color: rgba(27, 31, 35, 0.3); padding: 0px 10px;"&gt;&lt;/TD&gt;&lt;TD class="" style="color: #24292e; padding: 0px 10px;"&gt;&lt;P&gt;mSketchEditor.insertVertexAfterSelectedVertex(point);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE data-tab-size="8" style="background-color: #ffffff;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="" style="padding: 0px 10px;"&gt;if (mSketchEventListenerRestore != null) {&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="" data-line-number="337" style="color: rgba(27, 31, 35, 0.3); padding: 0px 10px;"&gt;&lt;/TD&gt;&lt;TD class="" style="padding: 0px 10px;"&gt;mMapView.setOnTouchListener(mSketchEventListenerRestore);&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="" data-line-number="338" style="color: rgba(27, 31, 35, 0.3); padding: 0px 10px;"&gt;&lt;/TD&gt;&lt;TD class="" style="padding: 0px 10px;"&gt;}&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="" data-line-number="367" style="color: rgba(27, 31, 35, 0.3); padding: 0px 10px;"&gt;&lt;/TD&gt;&lt;TD class="" style="color: #24292e; padding: 0px 10px;"&gt;}&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="" data-line-number="368" style="color: rgba(27, 31, 35, 0.3); padding: 0px 10px;"&gt;&lt;/TD&gt;&lt;TD class="" style="color: #24292e; padding: 0px 10px;"&gt;return ret;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="" data-line-number="369" style="color: rgba(27, 31, 35, 0.3); padding: 0px 10px;"&gt;&lt;/TD&gt;&lt;TD class="" style="color: #24292e; padding: 0px 10px;"&gt;}&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Aug 2019 16:44:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/sketchedit-not-work-with-magnifier-in-draw-new/m-p/114003#M843</guid>
      <dc:creator>ChanganShi</dc:creator>
      <dc:date>2019-08-01T16:44:58Z</dc:date>
    </item>
  </channel>
</rss>

