<?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 TwistByte</title>
	<atom:link href="http://twistbyte.com/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://twistbyte.com</link>
	<description>Mobile Games And Applications for Android and IPhone/IPad</description>
	<lastBuildDate>Fri, 14 Jan 2011 02:40:05 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on Android ListView with fast scroll and section index by Dustin</title>
		<link>http://twistbyte.com/tutorial/android-listview-with-fast-scroll-and-section-index/comment-page-1#comment-1747</link>
		<dc:creator>Dustin</dc:creator>
		<pubDate>Fri, 14 Jan 2011 02:40:05 +0000</pubDate>
		<guid isPermaLink="false">http://twistbyte.com/?p=333#comment-1747</guid>
		<description>Nice, thanks!  It worked for me with an ArrayAdapter, but not until I implemented the &quot;SectionIndexer&quot;.  Much appreciated post!</description>
		<content:encoded><![CDATA[<p>Nice, thanks!  It worked for me with an ArrayAdapter, but not until I implemented the &#8220;SectionIndexer&#8221;.  Much appreciated post!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using the Android licensing service step by step by dan</title>
		<link>http://twistbyte.com/tutorial/using-the-android-licensing-service-step-by-step/comment-page-1#comment-1463</link>
		<dc:creator>dan</dc:creator>
		<pubDate>Wed, 29 Dec 2010 11:29:57 +0000</pubDate>
		<guid isPermaLink="false">http://twistbyte.com/?p=269#comment-1463</guid>
		<description>I had the same problem as Chen with the checkLicense() showing as an error.

I changed the public class line to  
public class AppName extends  LicenseCheckActivity implements OnClickListener 

When I created the class in eclipse it put it into the wrong folder to start with - it created &#039;default.com&#039; in the src folder. After I moved it in the main app src folder it worked as expected.</description>
		<content:encoded><![CDATA[<p>I had the same problem as Chen with the checkLicense() showing as an error.</p>
<p>I changed the public class line to<br />
public class AppName extends  LicenseCheckActivity implements OnClickListener </p>
<p>When I created the class in eclipse it put it into the wrong folder to start with &#8211; it created &#8216;default.com&#8217; in the src folder. After I moved it in the main app src folder it worked as expected.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using the Android licensing service step by step by Aries</title>
		<link>http://twistbyte.com/tutorial/using-the-android-licensing-service-step-by-step/comment-page-1#comment-1413</link>
		<dc:creator>Aries</dc:creator>
		<pubDate>Sun, 26 Dec 2010 08:56:42 +0000</pubDate>
		<guid isPermaLink="false">http://twistbyte.com/?p=269#comment-1413</guid>
		<description>As a developer, I appreciate this post, even though I did it a bit differently.  My question is what happens when EXISTING users go in with the new licensing code?  Is the app going to &quot;bomb&quot; with a NOT_LICENSED result?  Or will it &quot;sense&quot; that the app has been purchased and let it go through?</description>
		<content:encoded><![CDATA[<p>As a developer, I appreciate this post, even though I did it a bit differently.  My question is what happens when EXISTING users go in with the new licensing code?  Is the app going to &#8220;bomb&#8221; with a NOT_LICENSED result?  Or will it &#8220;sense&#8221; that the app has been purchased and let it go through?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Android ListView with fast scroll and section index by anselmophil</title>
		<link>http://twistbyte.com/tutorial/android-listview-with-fast-scroll-and-section-index/comment-page-1#comment-1307</link>
		<dc:creator>anselmophil</dc:creator>
		<pubDate>Mon, 20 Dec 2010 20:48:46 +0000</pubDate>
		<guid isPermaLink="false">http://twistbyte.com/?p=333#comment-1307</guid>
		<description>Mine isnt working, and the only thats differentr from your code is that i use ArrayAdapter, not a custom adapter :(
Any idea?</description>
		<content:encoded><![CDATA[<p>Mine isnt working, and the only thats differentr from your code is that i use ArrayAdapter, not a custom adapter <img src='http://twistbyte.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /><br />
Any idea?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using the Android licensing service step by step by Daniel</title>
		<link>http://twistbyte.com/tutorial/using-the-android-licensing-service-step-by-step/comment-page-1#comment-1257</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Fri, 17 Dec 2010 13:12:19 +0000</pubDate>
		<guid isPermaLink="false">http://twistbyte.com/?p=269#comment-1257</guid>
		<description>great post, thanks for sharing</description>
		<content:encoded><![CDATA[<p>great post, thanks for sharing</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using the Android licensing service step by step by Chen</title>
		<link>http://twistbyte.com/tutorial/using-the-android-licensing-service-step-by-step/comment-page-1#comment-970</link>
		<dc:creator>Chen</dc:creator>
		<pubDate>Sun, 21 Nov 2010 18:58:19 +0000</pubDate>
		<guid isPermaLink="false">http://twistbyte.com/?p=269#comment-970</guid>
		<description>Hi,
thank you very much, i managed to solve the problem.
all i have to do is change the line:
public class X extends LicenseCheckActivity /*Activity*/ implements OnClickListener, Runnable {
your license check code working perfect  without any change.

now i&#039;m working to save license check status, i don&#039;t want to run the check every time the user open the application.
i know the right way doing it, is preferences.
but i don&#039;t know how to write preferences from inside LicenseCheckActivity class.

Thanks
Chen</description>
		<content:encoded><![CDATA[<p>Hi,<br />
thank you very much, i managed to solve the problem.<br />
all i have to do is change the line:<br />
public class X extends LicenseCheckActivity /*Activity*/ implements OnClickListener, Runnable {<br />
your license check code working perfect  without any change.</p>
<p>now i&#8217;m working to save license check status, i don&#8217;t want to run the check every time the user open the application.<br />
i know the right way doing it, is preferences.<br />
but i don&#8217;t know how to write preferences from inside LicenseCheckActivity class.</p>
<p>Thanks<br />
Chen</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using the Android licensing service step by step by Chen</title>
		<link>http://twistbyte.com/tutorial/using-the-android-licensing-service-step-by-step/comment-page-1#comment-951</link>
		<dc:creator>Chen</dc:creator>
		<pubDate>Thu, 18 Nov 2010 20:35:19 +0000</pubDate>
		<guid isPermaLink="false">http://twistbyte.com/?p=269#comment-951</guid>
		<description>Hi,
if i try to add public class &#039;My Class Name&#039; extends LicenseCheckActivity{}

i&#039;m getting &#039;The nested type CallSift cannot hide an enclosing 
 type&#039;</description>
		<content:encoded><![CDATA[<p>Hi,<br />
if i try to add public class &#8216;My Class Name&#8217; extends LicenseCheckActivity{}</p>
<p>i&#8217;m getting &#8216;The nested type CallSift cannot hide an enclosing<br />
 type&#8217;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using the Android licensing service step by step by Chen</title>
		<link>http://twistbyte.com/tutorial/using-the-android-licensing-service-step-by-step/comment-page-1#comment-950</link>
		<dc:creator>Chen</dc:creator>
		<pubDate>Thu, 18 Nov 2010 18:48:57 +0000</pubDate>
		<guid isPermaLink="false">http://twistbyte.com/?p=269#comment-950</guid>
		<description>Hi,
i&#039;m getting: The method checkLicense() is undefined for the type &quot;name of the class&quot;

saving license status,
can you give an example how to do it ?

Thanks</description>
		<content:encoded><![CDATA[<p>Hi,<br />
i&#8217;m getting: The method checkLicense() is undefined for the type &#8220;name of the class&#8221;</p>
<p>saving license status,<br />
can you give an example how to do it ?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using the Android licensing service step by step by twistbyte</title>
		<link>http://twistbyte.com/tutorial/using-the-android-licensing-service-step-by-step/comment-page-1#comment-948</link>
		<dc:creator>twistbyte</dc:creator>
		<pubDate>Thu, 18 Nov 2010 15:52:22 +0000</pubDate>
		<guid isPermaLink="false">http://twistbyte.com/?p=269#comment-948</guid>
		<description>@Chen what is the error message you are getting?

You can check once the first time they open the application and save the success result in the SharedPreferences. This way they only need to have network access the first time they open the app</description>
		<content:encoded><![CDATA[<p>@Chen what is the error message you are getting?</p>
<p>You can check once the first time they open the application and save the success result in the SharedPreferences. This way they only need to have network access the first time they open the app</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using the Android licensing service step by step by Chen</title>
		<link>http://twistbyte.com/tutorial/using-the-android-licensing-service-step-by-step/comment-page-1#comment-947</link>
		<dc:creator>Chen</dc:creator>
		<pubDate>Thu, 18 Nov 2010 15:26:17 +0000</pubDate>
		<guid isPermaLink="false">http://twistbyte.com/?p=269#comment-947</guid>
		<description>Hi,
thanks  for your help, this guide is very helpful.
i need your help in order to finish the job in my application.

I&#039;m getting error with checkLicense(), right after the content view in onCreate(Bundle savedInstanceState).

Java is new for me, so i don&#039;t know how to solve it, i&#039;m guessing its very simple.

last question, after the user download my application from Android Market, he need network access in order to check the license every time he start the application ?

Ones again, thank you very much for your help.

Best Regards
Chen</description>
		<content:encoded><![CDATA[<p>Hi,<br />
thanks  for your help, this guide is very helpful.<br />
i need your help in order to finish the job in my application.</p>
<p>I&#8217;m getting error with checkLicense(), right after the content view in onCreate(Bundle savedInstanceState).</p>
<p>Java is new for me, so i don&#8217;t know how to solve it, i&#8217;m guessing its very simple.</p>
<p>last question, after the user download my application from Android Market, he need network access in order to check the license every time he start the application ?</p>
<p>Ones again, thank you very much for your help.</p>
<p>Best Regards<br />
Chen</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.290 seconds -->

