<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Add contact photo to your list application</title>
	<atom:link href="http://www.droidnova.com/add-contact-photo-to-your-list-application,45.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.droidnova.com/add-contact-photo-to-your-list-application,45.html</link>
	<description>Rapid android development from Berlin</description>
	<lastBuildDate>Sat, 04 Feb 2012 17:50:52 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Zeeshan A Zakaria</title>
		<link>http://www.droidnova.com/add-contact-photo-to-your-list-application,45.html/comment-page-1#comment-2535</link>
		<dc:creator>Zeeshan A Zakaria</dc:creator>
		<pubDate>Sun, 29 Jan 2012 09:20:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.droidnova.com/?p=45#comment-2535</guid>
		<description>Thanks for this tutorial. it finally solved my mystery of how to setup my own adapter so I can show images along with text.

However, as another reader mentioned, you probably forgot to point out that for your second tutorial to work, in the first tutorial one needs to change:
&lt;pre lang=&quot;java&quot; line=&quot;1&quot;&gt;
myAdapter = new SimpleCursorAdapter(this, R.layout.main, cursor, columns, names);
&lt;/pre&gt;
to:
&lt;pre lang=&quot;java&quot; line=&quot;1&quot;&gt;
myAdapter = new MySimpleCursorAdapter (this, R.layout.main, cursor, columns, names);
&lt;/pre&gt;

Thanks a lot for saving my time.</description>
		<content:encoded><![CDATA[<p>Thanks for this tutorial. it finally solved my mystery of how to setup my own adapter so I can show images along with text.</p>
<p>However, as another reader mentioned, you probably forgot to point out that for your second tutorial to work, in the first tutorial one needs to change:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="java" style="font-family:monospace;">myAdapter <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> SimpleCursorAdapter<span style="color: #009900;">&#40;</span><span style="color: #000000; font-weight: bold;">this</span>, R.<span style="color: #006633;">layout</span>.<span style="color: #006633;">main</span>, cursor, columns, names<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>to:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="java" style="font-family:monospace;">myAdapter <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> MySimpleCursorAdapter <span style="color: #009900;">&#40;</span><span style="color: #000000; font-weight: bold;">this</span>, R.<span style="color: #006633;">layout</span>.<span style="color: #006633;">main</span>, cursor, columns, names<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>Thanks a lot for saving my time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Timothy Guo</title>
		<link>http://www.droidnova.com/add-contact-photo-to-your-list-application,45.html/comment-page-1#comment-2139</link>
		<dc:creator>Timothy Guo</dc:creator>
		<pubDate>Thu, 21 Jul 2011 12:10:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.droidnova.com/?p=45#comment-2139</guid>
		<description>This code example really gets me out from frustration. Thanks a lot!!!</description>
		<content:encoded><![CDATA[<p>This code example really gets me out from frustration. Thanks a lot!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gain</title>
		<link>http://www.droidnova.com/add-contact-photo-to-your-list-application,45.html/comment-page-1#comment-1992</link>
		<dc:creator>Gain</dc:creator>
		<pubDate>Sat, 07 May 2011 06:48:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.droidnova.com/?p=45#comment-1992</guid>
		<description>Thanks for this code i really wanted something like this one and i know it will be of great help.</description>
		<content:encoded><![CDATA[<p>Thanks for this code i really wanted something like this one and i know it will be of great help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin</title>
		<link>http://www.droidnova.com/add-contact-photo-to-your-list-application,45.html/comment-page-1#comment-1859</link>
		<dc:creator>Martin</dc:creator>
		<pubDate>Thu, 31 Mar 2011 11:03:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.droidnova.com/?p=45#comment-1859</guid>
		<description>As always, the answer is always behind the &quot;deprecated&quot; information. Take a look at the &lt;a href=&quot;http://developer.android.com/reference/android/provider/Contacts.People.html&quot; rel=&quot;nofollow&quot;&gt;documentation&lt;/a&gt;, you see that you should use &lt;a href=&quot;http://developer.android.com/reference/android/provider/ContactsContract.html&quot; rel=&quot;nofollow&quot;&gt;ContactsContract&lt;/a&gt; instead.</description>
		<content:encoded><![CDATA[<p>As always, the answer is always behind the &#8220;deprecated&#8221; information. Take a look at the <a href="http://developer.android.com/reference/android/provider/Contacts.People.html" rel="nofollow">documentation</a>, you see that you should use <a href="http://developer.android.com/reference/android/provider/ContactsContract.html" rel="nofollow">ContactsContract</a> instead.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter</title>
		<link>http://www.droidnova.com/add-contact-photo-to-your-list-application,45.html/comment-page-1#comment-1858</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Thu, 31 Mar 2011 10:53:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.droidnova.com/?p=45#comment-1858</guid>
		<description>People is depricated now . It&#039;s possible to do it without &quot;People&quot; ?</description>
		<content:encoded><![CDATA[<p>People is depricated now . It&#8217;s possible to do it without &#8220;People&#8221; ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin</title>
		<link>http://www.droidnova.com/add-contact-photo-to-your-list-application,45.html/comment-page-1#comment-1834</link>
		<dc:creator>Martin</dc:creator>
		<pubDate>Fri, 25 Mar 2011 13:38:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.droidnova.com/?p=45#comment-1834</guid>
		<description>Just follow the tutorial and you can do it all by yourself. I don&#039;t give code away. Learning is what I support!</description>
		<content:encoded><![CDATA[<p>Just follow the tutorial and you can do it all by yourself. I don&#8217;t give code away. Learning is what I support!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mshalash</title>
		<link>http://www.droidnova.com/add-contact-photo-to-your-list-application,45.html/comment-page-1#comment-1833</link>
		<dc:creator>mshalash</dc:creator>
		<pubDate>Fri, 25 Mar 2011 13:30:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.droidnova.com/?p=45#comment-1833</guid>
		<description>Hi all
I have been searching for a code like this for a week now, please let me have the source file and the xml file.
Many thanks</description>
		<content:encoded><![CDATA[<p>Hi all<br />
I have been searching for a code like this for a week now, please let me have the source file and the xml file.<br />
Many thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ankush</title>
		<link>http://www.droidnova.com/add-contact-photo-to-your-list-application,45.html/comment-page-1#comment-1816</link>
		<dc:creator>ankush</dc:creator>
		<pubDate>Wed, 23 Mar 2011 11:10:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.droidnova.com/?p=45#comment-1816</guid>
		<description>hello this helps me a lot</description>
		<content:encoded><![CDATA[<p>hello this helps me a lot</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sam</title>
		<link>http://www.droidnova.com/add-contact-photo-to-your-list-application,45.html/comment-page-1#comment-1725</link>
		<dc:creator>sam</dc:creator>
		<pubDate>Fri, 04 Mar 2011 06:42:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.droidnova.com/?p=45#comment-1725</guid>
		<description>Hi,
  I have implement the same source code but in case of load images from contact,i need to load images that image name coming from database.The application crash due to null-pointer.can please check it out</description>
		<content:encoded><![CDATA[<p>Hi,<br />
  I have implement the same source code but in case of load images from contact,i need to load images that image name coming from database.The application crash due to null-pointer.can please check it out</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dharmin</title>
		<link>http://www.droidnova.com/add-contact-photo-to-your-list-application,45.html/comment-page-1#comment-1693</link>
		<dc:creator>Dharmin</dc:creator>
		<pubDate>Mon, 21 Feb 2011 00:34:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.droidnova.com/?p=45#comment-1693</guid>
		<description>Thanks a lot for the post martin. That helped a lot.</description>
		<content:encoded><![CDATA[<p>Thanks a lot for the post martin. That helped a lot.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

