<?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 for Android Wizard</title>
	<atom:link href="http://androidwizard.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://androidwizard.net</link>
	<description>Learn the Android Mobile Platform!</description>
	<lastBuildDate>Wed, 07 Mar 2012 19:38:04 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Game Development- Part II Player &amp; Input Controls by prem</title>
		<link>http://androidwizard.net/2010/06/game-development-part-ii-player-input-controls/comment-page-1/#comment-273</link>
		<dc:creator>prem</dc:creator>
		<pubDate>Wed, 07 Mar 2012 19:38:04 +0000</pubDate>
		<guid isPermaLink="false">http://androidwizard.net/?p=215#comment-273</guid>
		<description>how to move packman within the maze of maze pacman game..can anyone help me out</description>
		<content:encoded><![CDATA[<p>how to move packman within the maze of maze pacman game..can anyone help me out</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Programming for Android? Not Finding the Tutorial You Need? by prem</title>
		<link>http://androidwizard.net/2010/08/not-finding-the-tutorial-you-need/comment-page-1/#comment-272</link>
		<dc:creator>prem</dc:creator>
		<pubDate>Wed, 07 Mar 2012 19:35:25 +0000</pubDate>
		<guid isPermaLink="false">http://androidwizard.net/?p=328#comment-272</guid>
		<description>i need the code of maze packman game.can anybody help me out</description>
		<content:encoded><![CDATA[<p>i need the code of maze packman game.can anybody help me out</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Crossing Things Off Of A ListView by Fernando Diaz</title>
		<link>http://androidwizard.net/2010/05/crossing-things-off-of-a-listview/comment-page-1/#comment-271</link>
		<dc:creator>Fernando Diaz</dc:creator>
		<pubDate>Wed, 29 Feb 2012 15:39:53 +0000</pubDate>
		<guid isPermaLink="false">http://androidwizard.net/?p=174#comment-271</guid>
		<description>Tks very good ,

please download the code , github



TKS TKS TKS</description>
		<content:encoded><![CDATA[<p>Tks very good ,</p>
<p>please download the code , github</p>
<p>TKS TKS TKS</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Fast Scroll List View by Tom Hammond</title>
		<link>http://androidwizard.net/2010/06/fast-scroll-list-view/comment-page-1/#comment-270</link>
		<dc:creator>Tom Hammond</dc:creator>
		<pubDate>Mon, 30 Jan 2012 21:26:07 +0000</pubDate>
		<guid isPermaLink="false">http://androidwizard.net/?p=229#comment-270</guid>
		<description>Is it possible to re-use a listview with the Alpha Indexer?  For instance, I first display a listView with 1,000 items that are unsorted and set setFastScrollEnabled to true to allow it to be searched quickly, like this:

myListView = (ListView) findViewById(R.id.myListView);
myListView.setFastScrollEnabled(true);
ArrayAdapter arrayAdapter = new ArrayAdapter(getApplicationContext(), android.R.layout.simple_list_item_1,PLAYLIST);
myListView.setAdapter(arrayAdapter); 

While looking at this list, if the user chooses to sort the list, the listView is &quot;recycled&quot; to a sorted list that uses setFastScroll in addition to the Alpha Indexer to show the letters of the alphabet when scrolling, like this:

myListView = (ListView) findViewById(R.id.myListView);
myListView.setFastScrollEnabled(true);
MyIndexerAdapter adapter = new MyIndexerAdapter(getApplicationContext(), android.R.layout.simple_list_item_1,PLAYLIST_SORTED);
myListView.setAdapter(adapter); 

Note that the MyIndexerAdapter calls the Alpha Indexer routines for this second use of listView.

When the program runs, the unsorted list is displayed first.  If the user does NOT use the fast scroll on this list, but chooses to display the sorted list, the Alpha Indexer fast scroll on the second (sorted) list works.  

However, if the first unsorted list is shown and the user uses the fast scroll on the unsorted list (without selecting anything), then the users chooses to display the sorted list, the sorted fast scroll does NOT show the Alpha Indexer!  

In other words, manipulating the fast scroller on the unsorted list causes the fast scroller on the second list not to show the Alpha Indexer letter while scrolling the second list.  Does anyone know why?</description>
		<content:encoded><![CDATA[<p>Is it possible to re-use a listview with the Alpha Indexer?  For instance, I first display a listView with 1,000 items that are unsorted and set setFastScrollEnabled to true to allow it to be searched quickly, like this:</p>
<p>myListView = (ListView) findViewById(R.id.myListView);<br />
myListView.setFastScrollEnabled(true);<br />
ArrayAdapter arrayAdapter = new ArrayAdapter(getApplicationContext(), android.R.layout.simple_list_item_1,PLAYLIST);<br />
myListView.setAdapter(arrayAdapter); </p>
<p>While looking at this list, if the user chooses to sort the list, the listView is &#8220;recycled&#8221; to a sorted list that uses setFastScroll in addition to the Alpha Indexer to show the letters of the alphabet when scrolling, like this:</p>
<p>myListView = (ListView) findViewById(R.id.myListView);<br />
myListView.setFastScrollEnabled(true);<br />
MyIndexerAdapter adapter = new MyIndexerAdapter(getApplicationContext(), android.R.layout.simple_list_item_1,PLAYLIST_SORTED);<br />
myListView.setAdapter(adapter); </p>
<p>Note that the MyIndexerAdapter calls the Alpha Indexer routines for this second use of listView.</p>
<p>When the program runs, the unsorted list is displayed first.  If the user does NOT use the fast scroll on this list, but chooses to display the sorted list, the Alpha Indexer fast scroll on the second (sorted) list works.  </p>
<p>However, if the first unsorted list is shown and the user uses the fast scroll on the unsorted list (without selecting anything), then the users chooses to display the sorted list, the sorted fast scroll does NOT show the Alpha Indexer!  </p>
<p>In other words, manipulating the fast scroller on the unsorted list causes the fast scroller on the second list not to show the Alpha Indexer letter while scrolling the second list.  Does anyone know why?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Loading Images From Remote Server by Sahiti</title>
		<link>http://androidwizard.net/2010/06/loading-images-from-remote-server/comment-page-1/#comment-269</link>
		<dc:creator>Sahiti</dc:creator>
		<pubDate>Mon, 19 Dec 2011 11:49:38 +0000</pubDate>
		<guid isPermaLink="false">http://androidwizard.net/?p=232#comment-269</guid>
		<description>hii i am new to android....i have a doubt in the program..
how to put files in server?? and how to crete my server??</description>
		<content:encoded><![CDATA[<p>hii i am new to android&#8230;.i have a doubt in the program..<br />
how to put files in server?? and how to crete my server??</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Custom Button Backgrounds Using A Selector XML Layout by blacke</title>
		<link>http://androidwizard.net/2010/02/custom-button-backgrounds-using-a-selector-xml-layout/comment-page-1/#comment-267</link>
		<dc:creator>blacke</dc:creator>
		<pubDate>Thu, 03 Nov 2011 05:46:30 +0000</pubDate>
		<guid isPermaLink="false">http://androidwizard.net/?p=17#comment-267</guid>
		<description>thanks</description>
		<content:encoded><![CDATA[<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Android Development Tutorial: Creating Sound Effects by kushagr</title>
		<link>http://androidwizard.net/2010/07/creating-sound-effects/comment-page-1/#comment-266</link>
		<dc:creator>kushagr</dc:creator>
		<pubDate>Tue, 11 Oct 2011 09:01:19 +0000</pubDate>
		<guid isPermaLink="false">http://androidwizard.net/?p=293#comment-266</guid>
		<description>can u play sounds of legth greater than 5 sec???</description>
		<content:encoded><![CDATA[<p>can u play sounds of legth greater than 5 sec???</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mobclix DOESN&#8217;T Pay &#8211; Stay Away by Ferry</title>
		<link>http://androidwizard.net/2011/06/mobclix-doesnt-pay-stay-away/comment-page-1/#comment-265</link>
		<dc:creator>Ferry</dc:creator>
		<pubDate>Mon, 26 Sep 2011 08:28:06 +0000</pubDate>
		<guid isPermaLink="false">http://androidwizard.net/?p=647#comment-265</guid>
		<description>Thanx for the warning :-)</description>
		<content:encoded><![CDATA[<p>Thanx for the warning <img src='http://androidwizard.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Programming for Android? Not Finding the Tutorial You Need? by Joel Witherspoon</title>
		<link>http://androidwizard.net/2010/08/not-finding-the-tutorial-you-need/comment-page-1/#comment-263</link>
		<dc:creator>Joel Witherspoon</dc:creator>
		<pubDate>Wed, 24 Aug 2011 04:10:32 +0000</pubDate>
		<guid isPermaLink="false">http://androidwizard.net/?p=328#comment-263</guid>
		<description>Avoid the Sams book (24 hours, yeah, right) if you are a beginner. You have to fill in the blanks and beginners to Android or Java development will by stumped in chapter 1.

The Wrox book is strongly written but it has very few visuals. You get a ton of code and some good insight and explanations, but you will have no idea if your code looks or functions correctly. It&#039;s not really project based like the Sams book so your coding may not work at all.

The best book I&#039;ve found is Android Development for Dummies. You are walked through a project and every component and activity is explained. In fact, there are three projects in the book that are on the beginning, intermediate and advanced levels. 

Use the Wrox book as a reference, skip the Sams book and buy the Dummies book. You&#039;ll get going right away.</description>
		<content:encoded><![CDATA[<p>Avoid the Sams book (24 hours, yeah, right) if you are a beginner. You have to fill in the blanks and beginners to Android or Java development will by stumped in chapter 1.</p>
<p>The Wrox book is strongly written but it has very few visuals. You get a ton of code and some good insight and explanations, but you will have no idea if your code looks or functions correctly. It&#8217;s not really project based like the Sams book so your coding may not work at all.</p>
<p>The best book I&#8217;ve found is Android Development for Dummies. You are walked through a project and every component and activity is explained. In fact, there are three projects in the book that are on the beginning, intermediate and advanced levels. </p>
<p>Use the Wrox book as a reference, skip the Sams book and buy the Dummies book. You&#8217;ll get going right away.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Game Development- Part I Loops and Sprites by Ed</title>
		<link>http://androidwizard.net/2010/06/game-development-part-i-loops-and-sprites/comment-page-1/#comment-256</link>
		<dc:creator>Ed</dc:creator>
		<pubDate>Mon, 30 May 2011 05:06:10 +0000</pubDate>
		<guid isPermaLink="false">http://androidwizard.net/?p=209#comment-256</guid>
		<description>Its kind of hard to understand since it&#039;s not indented but I think I get it.</description>
		<content:encoded><![CDATA[<p>Its kind of hard to understand since it&#8217;s not indented but I think I get it.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

