<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Mobile Bongo</title>
	<atom:link href="http://www.mobilebongo.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mobilebongo.com</link>
	<description>Got Mobile &#124; Mobile Application Development</description>
	<lastBuildDate>Fri, 21 Oct 2011 18:16:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Excellent Post &#8211; Android Design Guidelines</title>
		<link>http://www.mobilebongo.com/excellent-post-android-design-guidelines/</link>
		<comments>http://www.mobilebongo.com/excellent-post-android-design-guidelines/#comments</comments>
		<pubDate>Wed, 19 Oct 2011 14:14:42 +0000</pubDate>
		<dc:creator>bongo_admin</dc:creator>
				<category><![CDATA[Android Programming]]></category>
		<category><![CDATA[Mobile Development]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://www.mobilebongo.com/?p=312</guid>
		<description><![CDATA[Awesome read, excellent points. I love this is from a designers perspective. &#8220;As a disclaimer, I am a designer, and while my knowledge of programming has increased a fraction while creating a document, it should be known that Android makes it difficult for anyone who is not a programming to decipher their rules. So with that in mind, understand that [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.mobilebongo.com/wp-content/uploads/2011/10/android-developers.jpg" class="lightview" rel="gallery['312']" title="android-developers"><img class="alignleft size-full wp-image-324" title="android-developers" src="http://www.mobilebongo.com/wp-content/uploads/2011/10/android-developers.jpg" alt="" width="175" height="192" /></a>Awesome read, excellent points. I love this is from a designers perspective.</p>
<p>&#8220;As a disclaimer, I am a designer, and while my knowledge of programming has increased a fraction while creating a document, it should be known that Android makes it difficult for anyone who is not a programming to decipher their rules. So with that in mind, understand that while my research has been abundant, this document should be considered a designer’s translation of Android and therefore subject to error.</p>
<p>Read more <a title="Android Design Guidelines" href="http://www.mutualmobile.com/wp-content/uploads/2011/03/MM_Android_Design_Guidelines.pdf" target="_blank">here &#8230;.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mobilebongo.com/excellent-post-android-design-guidelines/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android Code Snippet &#8211; Check if Network is Available</title>
		<link>http://www.mobilebongo.com/code-snippet-overview/</link>
		<comments>http://www.mobilebongo.com/code-snippet-overview/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 19:46:51 +0000</pubDate>
		<dc:creator>Sheldon Cohen</dc:creator>
				<category><![CDATA[Mobile Development]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[Snippet]]></category>

		<guid isPermaLink="false">http://thedeveloper.wpmu3.layeredpixels.ca/?p=147</guid>
		<description><![CDATA[A quick Android Code Snippet to test if the network is available. It will return true if it is, or false if it isn&#8217;t.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.mobilebongo.com/wp-content/uploads/2010/09/android-network-available-sm.png" class="lightview" rel="gallery['147']" title="android-network-available-sm"><img class="alignleft size-full wp-image-356" title="android-network-available-sm" src="http://www.mobilebongo.com/wp-content/uploads/2010/09/android-network-available-sm.png" alt="" width="50" height="62" /></a>A quick Android Code Snippet to test if the network is available. It will return true if it is, or false if it isn&#8217;t.</p>
<pre class="brush: java; title: ; notranslate">

/**
* IMPORTANT: Don't forget to include into your manifest.xml!
* @author Sheldon Cohen
*
*/

public boolean isNetworkAvailable() {
   Context context = getApplicationContext();
   ConnectivityManager connectivity = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);
   if (connectivity == null) {
      showAlert(this.getString(R.string.alert),&quot;getSystemService rend null&quot;);
   } else {
      NetworkInfo[] info = connectivity.getAllNetworkInfo();
      if (info != null) {
         for (int i = 0; i &lt; info.length; i++) {
            if (info[i].getState() == NetworkInfo.State.CONNECTED) {
               return true;
            }
         }
      }
   }
   return false;
}

[...]
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.mobilebongo.com/code-snippet-overview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rapid Prototyping for iPhone / iOS Apps</title>
		<link>http://www.mobilebongo.com/iphone-ios-rapid-prototyping/</link>
		<comments>http://www.mobilebongo.com/iphone-ios-rapid-prototyping/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 04:49:59 +0000</pubDate>
		<dc:creator>Sheldon Cohen</dc:creator>
				<category><![CDATA[iPhone Development]]></category>
		<category><![CDATA[Mobile Development]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://thedeveloper.wpmu3.layeredpixels.ca/?p=131</guid>
		<description><![CDATA[iPhone GUI PSD Need to create a quick mockup for you client? Try this PSD setup, it will save you a ton of time getting a mockup to your client. Thanks to the great work over at teehanlax.com! iPhone GUI PSD Download. Easily allow your designers to get a mockup without having to touch any code!]]></description>
			<content:encoded><![CDATA[<h3><a href="http://www.mobilebongo.com/wp-content/uploads/2010/09/iphone-photoshop.png" class="lightview" rel="gallery['131']" title="iphone-photoshop"><img class="alignleft size-full wp-image-365" title="iphone-photoshop" src="http://www.mobilebongo.com/wp-content/uploads/2010/09/iphone-photoshop.png" alt="" width="136" height="119" /></a>iPhone GUI PSD</h3>
<p>Need to create a quick mockup for you client? Try this PSD setup, it will save you a ton of time getting a mockup to your client.</p>
<p>Thanks to the great work over at teehanlax.com! <a href="http://www.teehanlax.com/downloads/iphone-gui-psd/">iPhone GUI PSD Download</a>.</p>
<div class="clear"></div>
<blockquote><p>Easily allow your designers to get a mockup without having to touch any code!</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.mobilebongo.com/iphone-ios-rapid-prototyping/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
