<?xml version="1.0" encoding="utf-8"?>

			<rss version="2.0" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://web.resource.org/cc/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">

			<channel>
			<title>Against All Odds - Android</title>
			<link>http://www.ppshein.net/index.cfm</link>
			<description>A blog for ColdFusion, Android, jQuery, jQueryMobile, Oracle, HL7 and other Web-based programming languages, Web Server like IIS7 and RDMS like Oracle, Microsoft SQL and MySQL.</description>
			<language>en-us</language>
			<pubDate>Tue, 21 May 2013 18:40:54 -0700</pubDate>
			<lastBuildDate>Wed, 08 May 2013 04:00:00 -0700</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>pyaephyoeshein@gmail.com</managingEditor>
			<webMaster>pyaephyoeshein@gmail.com</webMaster>
			<itunes:subtitle></itunes:subtitle>
			<itunes:summary></itunes:summary>
			<itunes:category text="Technology" />
			<itunes:category text="Technology">
				<itunes:category text="Podcasting" />
			</itunes:category>
			<itunes:category text="Technology">
				<itunes:category text="Tech News" />
			</itunes:category>
			<itunes:keywords></itunes:keywords>
			<itunes:author></itunes:author>
			<itunes:owner>
				<itunes:email>pyaephyoeshein@gmail.com</itunes:email>
				<itunes:name></itunes:name>
			</itunes:owner>
			
			<itunes:explicit>no</itunes:explicit>
			
			
			
			
			
			<item>
				<title>Remove task on Android device</title>
				<link>http://www.ppshein.net/index.cfm/2013/5/8/Remote-task-on-Android-device</link>
				<description>
				
				Today, I found that how to remove our applications on android device task manager. It&apos;s very simple and same as &lt;b&gt;&quot;android:clearTaskOnLaunch&quot;&lt;/b&gt;.
				 [More]
				</description>
				
				
				<category>Android</category>
				
				<pubDate>Wed, 08 May 2013 04:00:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2013/5/8/Remote-task-on-Android-device</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>How to open default activity always in Android</title>
				<link>http://www.ppshein.net/index.cfm/2013/3/14/How-to-open-default-activity-always-in-Android</link>
				<description>
				
				Today got problem that my apps cannot go Index activity always whenever I&apos;ve already configured in manifest file.
&lt;code&gt;
&lt;activity
    android:name=&quot;com.ppshein.inm.IndexActivity&quot;
    android:label=&quot;@string/app_name&quot;
    android:screenOrientation=&quot;portrait&quot; &gt;
    &lt;intent-filter&gt;
        &lt;action android:name=&quot;android.intent.action.MAIN&quot; /&gt;

        &lt;category android:name=&quot;android.intent.category.LAUNCHER&quot; /&gt;
    &lt;/intent-filter&gt;
&lt;/activity&gt;
&lt;/code&gt;
				 [More]
				</description>
				
				
				<category>Android</category>
				
				<pubDate>Thu, 14 Mar 2013 00:14:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2013/3/14/How-to-open-default-activity-always-in-Android</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>moveToNext and moveToFirst sqlite cursor</title>
				<link>http://www.ppshein.net/index.cfm/2013/3/12/moveToNext-and-moveToFirst-sqlite-cursor</link>
				<description>
				
				Honestly, I&apos;ve never recognized every top record is missing when I retrieve data from sqlite table. It&apos;s really bad when someone point out that one record is missing even it&apos;s in sqlite table. That&apos;s why got stressed that how come every one top record is missing by following coding.

&lt;code&gt;
while(cursor.moveToNext()){    				    				
	startfrom = Integer.parseInt(cursor.getString(0));
}
&lt;/code&gt;
				 [More]
				</description>
				
				
				<category>SQLite</category>
				
				<category>Android</category>
				
				<pubDate>Tue, 12 Mar 2013 11:09:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2013/3/12/moveToNext-and-moveToFirst-sqlite-cursor</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>405 - HTTP verb used to access this page is not allowed</title>
				<link>http://www.ppshein.net/index.cfm/2013/1/9/405--HTTP-verb-used-to-access-this-page-is-not-allowed</link>
				<description>
				
				Yesterday, I&apos;ve encountered this error &lt;b&gt;&quot;server error:405 - HTTP verb used to access this page is not allowed&quot;&lt;/b&gt; when I call &quot;http://www.ppshein.net/test.html&quot; HTTP GET from my android program. I&apos;m confused why I got this error even I&apos;ve tried following url in my desktop browser is fine. Thus I was googling and find how to solve it. After few minutes, I&apos;ve found answer how to solve this problem. It&apos;s quite simple that change file extension to &quot;.cfm&quot;  instead of &quot;.html&quot;. It&apos;s because of web server doesn&apos;t let any request containing POST/GET method to any static page called &quot;.html, .htm&quot;, will return such following error called &quot;405&quot;.

Thanks god that I&apos;ve got new experience.
				
				</description>
				
				
				<category>Android</category>
				
				<category>HTML</category>
				
				<pubDate>Wed, 09 Jan 2013 19:10:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2013/1/9/405--HTTP-verb-used-to-access-this-page-is-not-allowed</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Fullscreen in Android</title>
				<link>http://www.ppshein.net/index.cfm/2012/10/18/Fullscreen-in-Android</link>
				<description>
				
				Question : Do you know how to make fullscreen in Android application?

Answer : It&apos;s very simple and only one line code to fulfill your desire. You need to add following line in your java file after &quot;&lt;b&gt;requestWindowFeature&lt;/b&gt;&quot; line. But don&apos;t forget to assign &quot;&lt;b&gt;Window.FEATURE_NO_TITLE&lt;/b&gt;&quot; in &quot;&lt;b&gt;requestWindowFeature&lt;/b&gt;&quot; just like &quot;&lt;b&gt;requestWindowFeature(Window.FEATURE_NO_TITLE);&lt;/b&gt;&quot;

&lt;code&gt;
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
&lt;/code&gt;
				
				</description>
				
				
				<category>Android</category>
				
				<pubDate>Thu, 18 Oct 2012 02:40:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2012/10/18/Fullscreen-in-Android</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Check Wifi or moblie network is connected</title>
				<link>http://www.ppshein.net/index.cfm/2012/9/20/Check-Wifi-or-moblie-network-is-connected</link>
				<description>
				
				In these days, I&apos;ve published two updated android application to Google Play (&lt;a href=&quot;https://play.google.com/store/apps/details?id=com.planetmyanmarnews&quot; target=&quot;_blank&quot;&gt;Planet Myanmar News&lt;/a&gt; and &lt;a href=&quot;https://play.google.com/store/apps/details?id=com.ppshein.PlanetDictionary&quot; target=&quot;_blank&quot;&gt;Planet Myanmar Dictionary&lt;/a&gt;). In both of them, I&apos;ve changed 100% sidemenu UI design like Facebook and GooglePlus for easy to use and navigate. You may ask why I didn&apos;t use Tabs and Menu features of android. It&apos;s because of I don&apos;t want those tabs will overlap on my screen and want bigger screen for my application. For menu, I don&apos;t want to use because some android users don&apos;t know how to use menu (I mean, which button needed to click to appear menu action).
				 [More]
				</description>
				
				
				<category>Android</category>
				
				<pubDate>Thu, 20 Sep 2012 03:22:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2012/9/20/Check-Wifi-or-moblie-network-is-connected</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>New version of android Planet Myanmar Dictionary is launched</title>
				<link>http://www.ppshein.net/index.cfm/2012/9/12/New-version-of-android-Planet-Myanmar-Dictionary-is-launched</link>
				<description>
				
				Today, I&apos;ve launched new version of android Planet Myanmar Dictionary. I&apos;ve changed 100% UI and added sync function on it.

Download link : &lt;a href=&quot;http://www.ppshein.net/Android/PlanetMyanmarDictionary/v05/planetdictionary2.apk&quot;&gt;&lt;h1&gt;DOWNLOAD&lt;/h1&gt;&lt;/a&gt;


&lt;img src=&quot;http://www.ppshein.net/images/Screenshot_2012-09-13-12-50-54[1].png&quot; width=&quot;150&quot; /&gt;
&lt;img src=&quot;http://www.ppshein.net/images/Screenshot_2012-09-13-12-51-00[1].png&quot; width=&quot;150&quot; /&gt;
&lt;img src=&quot;http://www.ppshein.net/images/Screenshot_2012-09-13-12-51-13[1].png&quot; width=&quot;150&quot; /&gt;
				
				</description>
				
				
				<category>Android</category>
				
				<pubDate>Wed, 12 Sep 2012 22:16:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2012/9/12/New-version-of-android-Planet-Myanmar-Dictionary-is-launched</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Latest application of Andriod Planet Myanmar News</title>
				<link>http://www.ppshein.net/index.cfm/2012/9/11/Latest-application-of-Andriod-Planet-Myanmar-News</link>
				<description>
				
				Today, I&apos;ve totally wrapped out new version of Planet Myanmar News application. In this one, we can read planet myanmar in offline version.

&lt;a href=&quot;http://www.ppshein.net/Android/PlanetMyanmarNews/v02/Planetmyanmarnews.apk&quot;&gt;Download&lt;/a&gt;

&lt;img src=&quot;http://www.ppshein.net/images/Screenshot_2012-09-11-17-56-33.png&quot; width=&quot;150&quot; /&gt;
&lt;img src=&quot;http://www.ppshein.net/images/Screenshot_2012-09-11-17-56-12.png&quot; width=&quot;150&quot; /&gt;
&lt;img src=&quot;http://www.ppshein.net/images/Screenshot_2012-09-11-17-56-40.png&quot; width=&quot;150&quot; /&gt;
				
				</description>
				
				
				<category>Android</category>
				
				<pubDate>Tue, 11 Sep 2012 03:36:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2012/9/11/Latest-application-of-Andriod-Planet-Myanmar-News</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>To check Wifi is connected in Android</title>
				<link>http://www.ppshein.net/index.cfm/2012/5/20/To-check-Wifi-is-connected-in-Android</link>
				<description>
				
				Honestly, it has been so long not to update my blog. That&apos;s why I&apos;m too keen to post an new interesting blog post for android. It&apos;s how to check wifi network is connected in android. It might be simple and childplay for those who has already got it but for those who didn&apos;t know yet might be interesting.

&lt;code&gt;
	public boolean isWifiConnect() {
		ConnectivityManager connManager = (ConnectivityManager) getSystemService(CONNECTIVITY_SERVICE);
		NetworkInfo mWifi = connManager.getNetworkInfo(ConnectivityManager.TYPE_WIFI);
		return mWifi.isConnected();
	}
&lt;/code&gt;

It&apos;s very simple. How to use this one is also simple.

&lt;code&gt;
boolean isConnected;
isConnected = isWifiConnect();
if (isConnected == false) {
Toast toast = Toast.makeText(Sync.this, &quot;Wifi is NOT connected yet&quot;, Toast.LENGTH_SHORT);
toast.setGravity(Gravity.CENTER, 0, 0);
toast.show();
} else {
Toast toast = Toast.makeText(Sync.this, &quot;Wifi is connected yet&quot;, Toast.LENGTH_SHORT);
toast.setGravity(Gravity.CENTER, 0, 0);
toast.show();
}
&lt;/code&gt;
				
				</description>
				
				
				<category>Android</category>
				
				<pubDate>Sun, 20 May 2012 05:05:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2012/5/20/To-check-Wifi-is-connected-in-Android</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Dhamma Cycle is on Google play</title>
				<link>http://www.ppshein.net/index.cfm/2012/5/10/Dhamma-Cycle-is-on-Google-play</link>
				<description>
				
				Last Tuesday, I&apos;ve launched Dhamma Cycle on Google Play. It&apos;s for those buddhism who want to keep in touch with Buddha&apos;s dhamma and want to listen while reciting. It&apos;s my so-called 4th android application.

Please help me to use my application.

&lt;img src=&quot;http://www.ppshein.net/images/Screenshot_2012-05-10-21-47-57[1].png&quot; /&gt;

Download

&lt;a href=&quot;https://play.google.com/store/apps/details?id=com.dhammacycle&amp;feature=search_result#?t=W251bGwsMSwxLDEsImNvbS5kaGFtbWFjeWNsZSJd&quot; target=&quot;_blank&quot;&gt;&lt;h1&gt;LINK&lt;/h1&gt;&lt;/a&gt;

&lt;a href=&quot;http://www.ppshein.net/Android/Dhamma/v01/DhammaCycle.apk&quot; target=&quot;_blank&quot;&gt;&lt;h1&gt;LINK MIRROR&lt;/h1&gt;&lt;/a&gt;
				
				</description>
				
				
				<category>Android</category>
				
				<pubDate>Thu, 10 May 2012 07:11:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2012/5/10/Dhamma-Cycle-is-on-Google-play</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Simple way to check wifi network</title>
				<link>http://www.ppshein.net/index.cfm/2012/4/9/Simple-way-to-check-wifi-network</link>
				<description>
				
				Today I know how to check wifi network is ON and OFF for andriod. Normally, there is so many checking for wifi network but what I&apos;m gonna show is very simple way to check. First of all, we need to define that we want to use WIFI network in andriod manifest as follow: 

&lt;code&gt;
&lt;uses-permission android:name=&quot;android.permission.ACCESS_WIFI_STATE&quot; /&gt;
&lt;uses-permission android:name=&quot;android.permission.CHANGE_WIFI_STATE&quot; /&gt;
&lt;/code&gt;

Then, we need to add following function whether WIFI network is open or not in device.
				 [More]
				</description>
				
				
				<category>Android</category>
				
				<pubDate>Mon, 09 Apr 2012 22:05:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2012/4/9/Simple-way-to-check-wifi-network</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Coldfusion documentation application is in Android market</title>
				<link>http://www.ppshein.net/index.cfm/2012/1/6/Coldfusion-documentation-application-is-in-Android-market</link>
				<description>
				
				Today, I&apos;m glad to inform to all that my Coldfusion documentation application is in Android market now. I&apos;m planning to add more cool features in it just like tablet version and so on.

&lt;a href=&quot;https://market.android.com/details?id=com.cfdocumentation&quot; target=&quot;_blank&quot;&gt;&lt;h3&gt;Coldfusion Documentation&lt;/h3&gt;&lt;/a&gt;
				
				</description>
				
				
				<category>Coldfusion</category>
				
				<category>Android</category>
				
				<pubDate>Fri, 06 Jan 2012 06:34:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2012/1/6/Coldfusion-documentation-application-is-in-Android-market</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Android Coldfusion documentation application</title>
				<link>http://www.ppshein.net/index.cfm/2012/1/1/Android-Coldfusion-documentation-application</link>
				<description>
				
				Today, I&apos;ve finalised Android Coldfusion documentation application for Coldfusion developer. This one is my third android application for my Android developer life and enhance more features which not included in my later applications.

In this Coldfusion documentation application, you can search functions and tags of Coldfusion and view all lists of functions and tags either. Likewise, functions and tags which you search are not in this documentation, you can search similar functions and tags of CF.
				 [More]
				</description>
				
				
				<category>Coldfusion</category>
				
				<category>Android</category>
				
				<pubDate>Sun, 01 Jan 2012 06:37:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2012/1/1/Android-Coldfusion-documentation-application</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Encoding HTML format in Android XML file</title>
				<link>http://www.ppshein.net/index.cfm/2011/10/24/Encoding-HTML-format-in-Android-XML-file</link>
				<description>
				
				Yesterday, I&apos;ve found all of value in XML are lost HTML format when I rendered my application. At that time, I don&apos;t know how to do and how to solve this problem. Because I&apos;ve put some value into string.xml file as common value and can use in any java file within project.

Here is the sample how I assign into XML file.

&lt;code&gt;
&lt;string name=&quot;about&quot;&gt;Planet Myanmar Dictionary &lt;br /&gt;&lt;small&gt;(Eng-Myanmar Dictionary)&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Developer&lt;/b&gt; : Pyae Phyoe Shein &lt;br /&gt;&lt;b&gt;Organization&lt;/b&gt; : Planet.com.mm &lt;br /&gt;&lt;b&gt;Version&lt;/b&gt; : 1.3 &lt;br /&gt;&lt;b&gt;Android OS&lt;/b&gt; : 2.0 and above&lt;/small&gt;&lt;/string&gt;
&lt;/code&gt;
				 [More]
				</description>
				
				
				<category>XML</category>
				
				<category>Android</category>
				
				<pubDate>Mon, 24 Oct 2011 06:20:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2011/10/24/Encoding-HTML-format-in-Android-XML-file</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Planet Myanmar Dictionary Android version</title>
				<link>http://www.ppshein.net/index.cfm/2011/10/13/Planet-Myanmar-Dictionary-Android-version</link>
				<description>
				
				&lt;p&gt;
	Today I&amp;#39;ve published my another Android application to Android market which called &amp;quot;&lt;strong&gt;Planet Myanmar Dictionary&lt;/strong&gt;&amp;quot;.&amp;nbsp;Planet Myanmar Dictionary is dedicated to our Planet user who would like to use Planet Dictionary through their Android OS based mobile phone without accessing Internet. It&amp;#39;s easy to search and save your favorite word in their mobile. In this application, I&amp;#39;ve used SQLite as storage engine. Honestly, I&amp;#39;m very very new to SQLite and don&amp;#39;t have much experience of it. But I&amp;#39;m very glad to touch SQLite and data manipulate.&lt;/p&gt;
				 [More]
				</description>
				
				
				<category>Project</category>
				
				<category>SQLite</category>
				
				<category>Android</category>
				
				<pubDate>Thu, 13 Oct 2011 22:04:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2011/10/13/Planet-Myanmar-Dictionary-Android-version</guid>
				
				
			</item>
			
		 	
			</channel></rss>