<?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: Odd behavior with Android ZoomControls and Callout in ArcGIS Runtime SDK for Android Questions</title>
    <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/odd-behavior-with-android-zoomcontrols-and-callout/m-p/426792#M2895</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Andy,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the suggestion.&amp;nbsp; The view object being passed is the zoombutton, not the mapview, thus there is no "v.zoomin()" method.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any other suggestions?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks again for all your help&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;-Andrew&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 16 May 2012 11:28:19 GMT</pubDate>
    <dc:creator>deleted-user-ATjHIWsdQYmT</dc:creator>
    <dc:date>2012-05-16T11:28:19Z</dc:date>
    <item>
      <title>Odd behavior with Android ZoomControls and Callout</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/odd-behavior-with-android-zoomcontrols-and-callout/m-p/426790#M2893</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have encountered some odd behavior when using the stock Android zoom controls. while a callout is visible.&amp;nbsp; Here is what I've found:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;1.&amp;nbsp; show a callout.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2.&amp;nbsp; while the callout is shown, zoom in/out on the map using the zoom controls&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3.&amp;nbsp; hide the callout (I do it via a button on the callout itself)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;4.&amp;nbsp; zoom in/out using the zoomcontrols.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;After zooming in/out the callout reappears.&amp;nbsp; I'm not sure what is showing the callout again because while debugging my callout.show() is not being hit again.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is my (very simple) code for zooming in/out:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;ZoomControls zoomCtl = (ZoomControls) findViewById(R.id.zoomControls1);&amp;nbsp; zoomCtl.setOnZoomInClickListener(new View.OnClickListener(){ &amp;nbsp;&amp;nbsp; @Override &amp;nbsp;&amp;nbsp; public void onClick(View v){ &amp;nbsp;&amp;nbsp;&amp;nbsp; mMapView.zoomin(); &amp;nbsp;&amp;nbsp; } &amp;nbsp; }); &amp;nbsp; zoomCtl.setOnZoomOutClickListener(new View.OnClickListener() { &amp;nbsp;&amp;nbsp; @Override &amp;nbsp;&amp;nbsp; public void onClick(View v) { &amp;nbsp;&amp;nbsp;&amp;nbsp; mMapView.zoomout(); &amp;nbsp;&amp;nbsp; } &amp;nbsp; });&amp;nbsp; &lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any ideas?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2012 18:04:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/odd-behavior-with-android-zoomcontrols-and-callout/m-p/426790#M2893</guid>
      <dc:creator>deleted-user-ATjHIWsdQYmT</dc:creator>
      <dc:date>2012-05-14T18:04:41Z</dc:date>
    </item>
    <item>
      <title>Re: Odd behavior with Android ZoomControls and Callout</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/odd-behavior-with-android-zoomcontrols-and-callout/m-p/426791#M2894</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Check the properties of the view object that's being passed by the View.OnClickListener. It's possible that listener is passing in a copy of the View which contains a different State.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;public void onClick(View v){
&amp;nbsp;&amp;nbsp;&amp;nbsp; mMapView.zoomin();
}
&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;versus&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;public void onClick(View v){
&amp;nbsp;&amp;nbsp;&amp;nbsp; v.zoomin();
}&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;-Andy&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 16:27:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/odd-behavior-with-android-zoomcontrols-and-callout/m-p/426791#M2894</guid>
      <dc:creator>AndyGup</dc:creator>
      <dc:date>2021-12-12T16:27:35Z</dc:date>
    </item>
    <item>
      <title>Re: Odd behavior with Android ZoomControls and Callout</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/odd-behavior-with-android-zoomcontrols-and-callout/m-p/426792#M2895</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Andy,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the suggestion.&amp;nbsp; The view object being passed is the zoombutton, not the mapview, thus there is no "v.zoomin()" method.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any other suggestions?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks again for all your help&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;-Andrew&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 May 2012 11:28:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/odd-behavior-with-android-zoomcontrols-and-callout/m-p/426792#M2895</guid>
      <dc:creator>deleted-user-ATjHIWsdQYmT</dc:creator>
      <dc:date>2012-05-16T11:28:19Z</dc:date>
    </item>
    <item>
      <title>Re: Odd behavior with Android ZoomControls and Callout</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/odd-behavior-with-android-zoomcontrols-and-callout/m-p/426793#M2896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Ah, right, because we don't currently support ZoomControls directly in com.esri.android.map.MapView. You set up a stand-alone ZoomControl and that's why the listener is returning your zoomButton as the scope. Got it. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So, I was able to reproduce the behavior. While it's not exactly clear what's causing the problem,&amp;nbsp; I suspect it's related to the View.OnClickListener and we'd have to dig deeper. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;As a temporary workaround, by simply setting up an OnZoomListener I was able to modify the behavior of the callout. When I implemented this pattern the callout seems to always hide() when using the ZoomControl, which isn't 100% ideal . Maybe you can work with something related to this for now, and give it a try? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In the meantime, I'll submit an enhancement request that we look into working side-by-side with ZoomControls.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;map.setOnZoomListener(new OnZoomListener() {
 
 /**
&amp;nbsp; * 
&amp;nbsp; */
 private static final long serialVersionUID = 1L;

 @Override
 public void preAction(float pivotX, float pivotY, double factor) {
&amp;nbsp; // TODO Auto-generated method stub
&amp;nbsp; 
 }
 
 @Override
 public void postAction(float pivotX, float pivotY, double factor) {
&amp;nbsp; Log.d("test","test of the OnZoomListener");
&amp;nbsp; 
 }
});&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 19:12:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/odd-behavior-with-android-zoomcontrols-and-callout/m-p/426793#M2896</guid>
      <dc:creator>AndyGup</dc:creator>
      <dc:date>2021-12-11T19:12:48Z</dc:date>
    </item>
    <item>
      <title>Re: Odd behavior with Android ZoomControls and Callout</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/odd-behavior-with-android-zoomcontrols-and-callout/m-p/426794#M2897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Andy,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the tip.&amp;nbsp; I had the same issue as you as far as the callout always hiding.&amp;nbsp; Any ideas on how to keep it visible when I want it visible, and hidden when I want it hidden?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Andrew&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 May 2012 12:46:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/odd-behavior-with-android-zoomcontrols-and-callout/m-p/426794#M2897</guid>
      <dc:creator>deleted-user-ATjHIWsdQYmT</dc:creator>
      <dc:date>2012-05-24T12:46:17Z</dc:date>
    </item>
    <item>
      <title>Re: Odd behavior with Android ZoomControls and Callout</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/odd-behavior-with-android-zoomcontrols-and-callout/m-p/426795#M2898</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Andrew, do you mean is there a way to control the default callout using my proposed workaround? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm not sure what your workflow is, however here's some additional psuedo-code you can try out, and look at bolting some of it into the workaround if it meets your needs. In my app using a pattern like this, I was able to temporarily disable the default callout, and then it would come back the next time a user clicked on a graphic. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Another option would be to create your own custom callout. That would be the best practice, but it would involve more coding. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;callout = map.getCallout();
callout.setStyle(R.xml.calloutstyle);

testButton = (ImageButton)findViewById(R.id.testbutton);

testButton.setOnClickListener(new OnClickListener() {
 
 @Override
 public void onClick(View v) {
&amp;nbsp; if(callout != null){
&amp;nbsp;&amp;nbsp; callout.hide();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; callout = null; //callout gets re-created when user clicks on Graphic
&amp;nbsp; }&amp;nbsp;&amp;nbsp;&amp;nbsp; 
 }
});&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;-Andy&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 19:12:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/odd-behavior-with-android-zoomcontrols-and-callout/m-p/426795#M2898</guid>
      <dc:creator>AndyGup</dc:creator>
      <dc:date>2021-12-11T19:12:50Z</dc:date>
    </item>
    <item>
      <title>Re: Odd behavior with Android ZoomControls and Callout</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/odd-behavior-with-android-zoomcontrols-and-callout/m-p/426796#M2899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Andy -&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Let me see if I can be more clear.&amp;nbsp; When implementing the listeners you suggest:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Callout is visible.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Click Zoom Out on zoomcontrol&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;the callout disappears.&amp;nbsp; I'd like it to stay visible.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This implementation does in fact work properly IF you close the callout before zooming.&amp;nbsp; But, what if I want it to continue showing while i zoom in/out?&amp;nbsp; without implementing the listeners the code functions as desired (callout reappears) BUT - you can't keep it closed once it's opened.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This seems like one of those damned if you do, damned if you don't situations...&amp;nbsp; I want to be able to use the zoom controls, but I want the callout to stay closed when I close it, and stay open when I have it open.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks again.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 May 2012 17:27:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/odd-behavior-with-android-zoomcontrols-and-callout/m-p/426796#M2899</guid>
      <dc:creator>deleted-user-ATjHIWsdQYmT</dc:creator>
      <dc:date>2012-05-24T17:27:53Z</dc:date>
    </item>
    <item>
      <title>Re: Odd behavior with Android ZoomControls and Callout</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/odd-behavior-with-android-zoomcontrols-and-callout/m-p/426797#M2900</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;How about the following:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Scenario 1&lt;/STRONG&gt;&lt;SPAN&gt; - callout always visible:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Callout is visible.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[set Esri zoom listener to null -- e.g. map.setOnZoomListener(null);]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Click Zoom Out on zoomcontrol&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Call should stay visible&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Scenario 2&lt;/STRONG&gt;&lt;SPAN&gt; - callout always closed:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Callout is visible.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[user closes callout]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[re-initialize a new Esri zoom listener]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Click Zoom Out on zoomcontrol&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;the callout disappears.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I haven't tried this but it sounds like it would work. What do you think?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;-Andy&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 May 2012 20:37:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/odd-behavior-with-android-zoomcontrols-and-callout/m-p/426797#M2900</guid>
      <dc:creator>AndyGup</dc:creator>
      <dc:date>2012-05-24T20:37:20Z</dc:date>
    </item>
    <item>
      <title>Re: Odd behavior with Android ZoomControls and Callout</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/odd-behavior-with-android-zoomcontrols-and-callout/m-p/426798#M2901</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Andy,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Worked like a charm....&amp;nbsp; Toggling the map's zoom listener seemed to be the trick.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;For the sake of redundancy, I wrote a method to reinitialize the map's zoom listener.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;For those in need, here's my code:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ZoomControls zoomCtl = (ZoomControls) findViewById(R.id.zoomControls1);&amp;nbsp; zoomCtl.setOnZoomInClickListener(new View.OnClickListener(){
&amp;nbsp;&amp;nbsp; @Override
&amp;nbsp;&amp;nbsp; public void onClick(View v){
&amp;nbsp;&amp;nbsp;&amp;nbsp; if (callout.isShowing()){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mMapView.setOnZoomListener(null);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mMapView.zoomin();
&amp;nbsp;&amp;nbsp;&amp;nbsp; }else{
&amp;nbsp;&amp;nbsp;&amp;nbsp; ZoomListenerOn(mMapView);
&amp;nbsp;&amp;nbsp;&amp;nbsp; mMapView.zoomin();
&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp; }
&amp;nbsp; });
&amp;nbsp; zoomCtl.setOnZoomOutClickListener(new View.OnClickListener() {
&amp;nbsp;&amp;nbsp; @Override
&amp;nbsp;&amp;nbsp; public void onClick(View v) {
&amp;nbsp;&amp;nbsp;&amp;nbsp; if (callout.isShowing()){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mMapView.setOnZoomListener(null);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mMapView.zoomout();
&amp;nbsp;&amp;nbsp;&amp;nbsp; }else{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ZoomListenerOn(mMapView);
&amp;nbsp;&amp;nbsp;&amp;nbsp; mMapView.zoomout();
&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp; }
&amp;nbsp; }); 
public void ZoomListenerOn(MapView m){&amp;nbsp; m.setOnZoomListener(new OnZoomListener() {
&amp;nbsp;&amp;nbsp; private static final long serialVersionUID = 1L;
&amp;nbsp;&amp;nbsp; @Override
&amp;nbsp;&amp;nbsp; public void preAction(float pivotX, float pivotY, double factor) {
&amp;nbsp;&amp;nbsp;&amp;nbsp; // TODO Auto-generated method stub
&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp; @Override
&amp;nbsp;&amp;nbsp; public void postAction(float pivotX, float pivotY, double factor) {
&amp;nbsp;&amp;nbsp;&amp;nbsp; Log.d("test","test of the OnZoomListener");
&amp;nbsp;&amp;nbsp; }
&amp;nbsp; }); 
 }
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 19:12:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/odd-behavior-with-android-zoomcontrols-and-callout/m-p/426798#M2901</guid>
      <dc:creator>deleted-user-ATjHIWsdQYmT</dc:creator>
      <dc:date>2021-12-11T19:12:53Z</dc:date>
    </item>
  </channel>
</rss>

