<?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: Callout size problem in ArcGIS Runtime SDK for Android Questions</title>
    <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/callout-size-problem/m-p/8477#M60</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Did you try cranking up your callout's max width/height values?&amp;nbsp; say something like:&lt;BR /&gt;&lt;BR /&gt;Also, I don't know if you need to call getStyle();&lt;BR /&gt;&lt;BR /&gt;calloutView.setMaxWidth(300);&lt;BR /&gt;calloutView.setMaxHeight(200);&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Oh yes i did. It didn't work!!!.&amp;nbsp; I replaced call out with an alert dialogue.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 28 Apr 2013 04:17:05 GMT</pubDate>
    <dc:creator>cadgism</dc:creator>
    <dc:date>2013-04-28T04:17:05Z</dc:date>
    <item>
      <title>Callout size problem</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/callout-size-problem/m-p/8475#M58</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The call out I am showing to display an attribute value of a point&amp;nbsp; feature does not show its full length. Please see the attachments. Can some one help please!!.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;identify_callout_content.xml&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt; &amp;lt;LinearLayout &amp;nbsp;&amp;nbsp;&amp;nbsp; xmlns:android="http://schemas.android.com/apk/res/android" &amp;nbsp;&amp;nbsp;&amp;nbsp; android:layout_width="fill_parent" &amp;nbsp;&amp;nbsp;&amp;nbsp; android:orientation="horizontal" &amp;nbsp;&amp;nbsp;&amp;nbsp; android:layout_height="fill_parent" &amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;TextView &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; android:id="@+id/landMark" &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; android:layout_height="wrap_content" &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; android:layout_width="fill_parent" &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; android:gravity="center"&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; android:textSize="15sp" &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; android:textStyle="bold" &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; android:textColor="@color/bgrfont" &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; android:typeface="normal"/&amp;gt; &amp;nbsp; &amp;lt;/LinearLayout&amp;gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;identify_calloutstyle.xml&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt; &amp;lt;resources&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;calloutViewStyle &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; anchor="9dip" &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; backgroundColor="#7F0A0A0A" &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; flat="true" &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cornerCurve="10"&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; frameColor="#FFC7C7C7" &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; maxWidth="100"/&amp;gt; &amp;lt;/resources&amp;gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt; m_calloutStyle = R.xml.identify_calloutstyle; LayoutInflater inflater = getLayoutInflater(); m_callout = map.getCallout(); ViewGroup calloutContent = (ViewGroup) inflater.inflate(R.layout.identify_callout_content, null); m_callout.setContent(calloutContent);&amp;nbsp;&amp;nbsp; private void ShowCallout(Callout calloutView, Graphic graphic,Point mapPoint) {&amp;nbsp;&amp;nbsp;&amp;nbsp; String lmarkName = (String) graphic.getAttributeValue("NAME"); &amp;nbsp;&amp;nbsp;&amp;nbsp; calloutView.setStyle(m_calloutStyle);&amp;nbsp; calloutView.setCoordinates(mapPoint);&amp;nbsp; calloutView.getStyle().setMaxHeight(50);&amp;nbsp; calloutView.getStyle().setMaxWidth(100); &amp;nbsp;&amp;nbsp;&amp;nbsp; TextView calloutTextLine1 = (TextView) findViewById(R.id.landMark);&amp;nbsp; calloutTextLine1.setText(lmarkName); &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; calloutView.setContent(calloutContent);&amp;nbsp; calloutView.refresh();&amp;nbsp; calloutView.show(); }&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Apr 2013 08:51:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/callout-size-problem/m-p/8475#M58</guid>
      <dc:creator>cadgism</dc:creator>
      <dc:date>2013-04-10T08:51:53Z</dc:date>
    </item>
    <item>
      <title>Re: Callout size problem</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/callout-size-problem/m-p/8476#M59</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Did you try cranking up your callout's max width/height values?&amp;nbsp; say something like:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Also, I don't know if you need to call getStyle();&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;calloutView.setMaxWidth(300);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;calloutView.setMaxHeight(200);&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Apr 2013 18:03:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/callout-size-problem/m-p/8476#M59</guid>
      <dc:creator>deleted-user-ATjHIWsdQYmT</dc:creator>
      <dc:date>2013-04-25T18:03:49Z</dc:date>
    </item>
    <item>
      <title>Re: Callout size problem</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/callout-size-problem/m-p/8477#M60</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Did you try cranking up your callout's max width/height values?&amp;nbsp; say something like:&lt;BR /&gt;&lt;BR /&gt;Also, I don't know if you need to call getStyle();&lt;BR /&gt;&lt;BR /&gt;calloutView.setMaxWidth(300);&lt;BR /&gt;calloutView.setMaxHeight(200);&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Oh yes i did. It didn't work!!!.&amp;nbsp; I replaced call out with an alert dialogue.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Apr 2013 04:17:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/callout-size-problem/m-p/8477#M60</guid>
      <dc:creator>cadgism</dc:creator>
      <dc:date>2013-04-28T04:17:05Z</dc:date>
    </item>
    <item>
      <title>Re: Callout size problem</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/callout-size-problem/m-p/8478#M61</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have the same problem. Tried setting the max height and width but the callout still crops my custom view.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Is there a way to make it larger?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Jun 2013 02:38:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/callout-size-problem/m-p/8478#M61</guid>
      <dc:creator>MáximoMussini</dc:creator>
      <dc:date>2013-06-17T02:38:25Z</dc:date>
    </item>
  </channel>
</rss>

