<?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>Android Mobile Device</title>
	<atom:link href="http://android-mobile-device.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://android-mobile-device.com</link>
	<description>Developments for Android Mobile Devices</description>
	<lastBuildDate>Tue, 13 Dec 2011 13:00:24 +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>Add Voice Typing To Your IME</title>
		<link>http://android-mobile-device.com/2011/12/add-voice-typing-to-your-ime/</link>
		<comments>http://android-mobile-device.com/2011/12/add-voice-typing-to-your-ime/#comments</comments>
		<pubDate>Tue, 13 Dec 2011 13:00:24 +0000</pubDate>
		<dc:creator>Android Dev</dc:creator>
				<category><![CDATA[Android Developers]]></category>

		<guid isPermaLink="false">http://android-mobile-device.com/2011/12/add-voice-typing-to-your-ime/</guid>
		<description><![CDATA[[This post is by Luca Zanolin, an Android engineer who works on voice typing.&#160;&#8212;&#160;Tim&#160;Bray] A new feature available in Android 4.0 is voice typing: the difference for users is that the recognition results appear in the text box while they are still speaking. If you are an IME developer, you can easily integrate with voice [...]]]></description>
			<content:encoded><![CDATA[<p><i>[This post is by Luca Zanolin, an Android engineer who works on voice typing.&nbsp;&mdash;&nbsp;Tim&nbsp;Bray]</i></p>
<p>A new feature available in Android 4.0 is voice typing: the difference for users is that the recognition results appear in the text box while they are still speaking. If you are an IME developer, you can easily integrate with voice typing. </p>
<p>To simplify the integration, if you download <a href="https://google-voice-typing-integration.googlecode.com/git/VoiceImeUtils/voiceimeutils.jar">this</a> library and modify your IME as described below, everything will work smoothly on any device with Android 2.2 or later. On 4.0+, users will get voice typing, and earlier versions will use standard voice recognition; the difference is illustrated below.</p>
<p><a href="http://4.bp.blogspot.com/-HXI0a-ADssM/TuZvhNAPSsI/AAAAAAAAA-c/bh9t_h2L_x0/s1600/voice-modes.png"><img style="margin:0px auto 10px;text-align:center;cursor:pointer;cursor:hand;width: 400px;height: 333px" src="http://android-mobile-device.com/wp-content/plugins/wp-o-matic/cache/4bc1c_voice-modes.png" border="0" /></a>
<p>To see how to integrate voice typing you can take a look at this <a href="https://code.google.com/p/google-voice-typing-integration/source/browse/#git%2FVoiceImeDemo">sample IME</a>. The IME is really simple and contains only one button: a microphone. By pressing the microphone, the user triggers voice recognition.</p>
<p>Here are the steps that you need to follow to integrate voice recognition into your IME.</p>
<h3>Download the library</h3>
<p>Download <a href="https://google-voice-typing-integration.googlecode.com/git/VoiceImeUtils/voiceimeutils.jar">this library</a> and add it to your IME APK.</p>
<h3>Create the voice recognition trigger</h3>
<p>The library contains the <a href="https://google-voice-typing-integration.googlecode.com/git/VoiceImeUtils/doc/index.html?com/google/android/voiceime/VoiceRecognitionTrigger.html">VoiceRecognitionTrigger</a> helper class. Create an instance of it inside the <a href="http://developer.android.com/reference/android/inputmethodservice/InputMethodService.html#onCreate()">InputMethodService#onCreate</a> method in your IME.</p>
<pre><code>public void onCreate() {
    super.onCreate();
    ...
    mVoiceRecognitionTrigger = new VoiceRecognitionTrigger(this);
}</code></pre>
<h3>Add the microphone icon to your IME</h3>
<p>You need to modify the UI of your IME, add a microphone icon, and register an OnClickListener to trigger voice recognition. You can find the assets inside the sample IME. The microphone icon should be displayed only if voice recognition is installed; use <a href="https://google-voice-typing-integration.googlecode.com/git/VoiceImeUtils/doc/index.html?com/google/android/voiceime/VoiceRecognitionTrigger.html">VoiceRecognitionTrigger#isInstalled()</a>.</p>
<pre><code>public View onCreateInputView() {
  LayoutInflater inflater = (LayoutInflater) getSystemService(
      Service.LAYOUT_INFLATER_SERVICE);
  mView = inflater.inflate(R.layout.ime, null);
  ...
  mButton = (ImageButton) mView.findViewById(R.id.mic_button);
  if (mVoiceRecognitionTrigger.isInstalled()) {
    mButton.setOnClickListener(new OnClickListener() {
      @Override
      public void onClick(View v) {
        mVoiceRecognitionTrigger.startVoiceRecognition();
      }
    });
    mButton.setVisibility(View.VISIBLE);
  } else {
    mButton.setVisibility(View.GONE);
  }
  return mView;
}</code></pre>
<p>If your IME supports multiple languages, you can specify in which language recognition should be done as a parameter of <a href="https://google-voice-typing-integration.googlecode.com/git/VoiceImeUtils/doc/com/google/android/voiceime/VoiceRecognitionTrigger.html#startVoiceRecognition(java.lang.String)">startVoiceRecognition()</a>.</p>
<h3>Notify the trigger when your IME starts</h3>
<p>When your IME starts, you need to notify the trigger, so it can insert into the text view any pending recognition results.</p>
<pre><code>@Override
public void onStartInputView(EditorInfo info, boolean restarting) {
  super.onStartInputView(info, restarting);
  if (mVoiceRecognitionTrigger != null) {
    mVoiceRecognitionTrigger.onStartInputView();
  }
}</code></pre>
<h3>Modify your AndroidManifest</h3>
<p>In order to start a voice recognition through the Intent API, the library uses a service and an activity, and you need to add them into your manifest.</p>
<pre><code>&lt;manifest ... &gt;
  &lt;application ...&gt;
    ...
    &lt;service android:name="com.google.android.voiceime.ServiceHelper" /&gt;
    &lt;activity
        android:name="com.google.android.voiceime.ActivityHelper"
        android:theme="@android:style/Theme.Translucent.NoTitleBar"
        android:excludeFromRecents="true"
        android:windowSoftInputMode="stateAlwaysHidden"
        android:finishOnTaskLaunch="true"
        android:configChanges="keyboard|keyboardHidden|navigation
                               |orientation"/&gt;
  &lt;/application&gt;
&lt;/manifest&gt;</code></pre>
<h3>Update the microphone icon dynamically (optional)</h3>
<p>This step is optional, but you should implement it if possible as it will improve the user experience. Voice recognition requires network access, and if there is no network, your IME should notify the user that voice recognition is currently disabled. To achieve this, you need to register the <a href="https://google-voice-typing-integration.googlecode.com/git/VoiceImeUtils/doc/index.html?com/google/android/voiceime/VoiceRecognitionTrigger.html">VoiceRecognitionTrigger.Listener</a> and enable/disable the microphone accordingly. </p>
<p>The listener is registered in <a href="http://developer.android.com/reference/android/inputmethodservice/InputMethodService.html#onCreate()">InputMethodService#onCreate</a>, and you have to unregister it in <a href="http://developer.android.com/reference/android/inputmethodservice/InputMethodService.html#onDestroy()">InputMethodService#onDestroy</a>, otherwise you will leak the listener.</p>
<pre><code>@Override
public void onCreate() {
  super.onCreate();
  ...
  mVoiceRecognitionTrigger = new VoiceRecognitionTrigger(this);
  mVoiceRecognitionTrigger.register(new VoiceRecognitionTrigger.Listener() {
    @Override
    public void onVoiceImeEnabledStatusChange() {
      updateVoiceImeStatus();
    }
  });
}

...
@Override
public void onDestroy() {
  ...
  if (mVoiceRecognitionTrigger != null) {
    mVoiceRecognitionTrigger.unregister(this);
  }
  super.onDestroy();
}

private void updateVoiceImeStatus() {
  if (mVoiceRecognitionTrigger.isInstalled()) {
    mButton.setVisibility(View.VISIBLE);
    if (mVoiceRecognitionTrigger.isEnabled()) {
      mButton.setEnabled(true);
    } else {
      mButton.setEnabled(false);
    }
  } else {
    mButton.setVisibility(View.GONE);
  }
  mView.invalidate();
}</code></pre>
<p>And add this permission into your manifest:</p>
<pre><code>&lt;manifest ... &gt;
  ...
  &lt;uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/&gt;
  ...
&lt;/manifest&gt;</code></pre>
<h3>That&rsquo;s all there is to it</h3>
<p>Voice recognition makes it easy for users to do more with their Android devices, so we appreciate your support in adding it to your IMEs.</p>
<div><img width="1" height="1" src="http://android-mobile-device.com/wp-content/plugins/wp-o-matic/cache/ce7e9_6755709643044947179-1436820868716344333?l=android-developers.blogspot.com" alt="" /></div>
<div>
<a href="http://feeds.feedburner.com/~ff/blogspot/hsDu?a=ZmXHrqZ2NQw:_8_W6O147Ew:yIl2AUoC8zA"><img src="http://android-mobile-device.com/wp-content/plugins/wp-o-matic/cache/ce7e9_hsDu?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/blogspot/hsDu?a=ZmXHrqZ2NQw:_8_W6O147Ew:-BTjWOF_DHI"><img src="http://android-mobile-device.com/wp-content/plugins/wp-o-matic/cache/ce7e9_hsDu?i=ZmXHrqZ2NQw:_8_W6O147Ew:-BTjWOF_DHI" border="0"></img></a>
</div>
<p><img src="http://android-mobile-device.com/wp-content/plugins/wp-o-matic/cache/ce7e9_ZmXHrqZ2NQw" height="1" width="1" /></p>
]]></content:encoded>
			<wfw:commentRss>http://android-mobile-device.com/2011/12/add-voice-typing-to-your-ime/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Coby to Reveal Five New Ice Cream Sandwich Tablets at CES</title>
		<link>http://android-mobile-device.com/2011/12/coby-to-reveal-five-new-ice-cream-sandwich-tablets-at-ces/</link>
		<comments>http://android-mobile-device.com/2011/12/coby-to-reveal-five-new-ice-cream-sandwich-tablets-at-ces/#comments</comments>
		<pubDate>Tue, 13 Dec 2011 12:55:15 +0000</pubDate>
		<dc:creator>Android Dev</dc:creator>
				<category><![CDATA[Android News]]></category>

		<guid isPermaLink="false">http://android-mobile-device.com/2011/12/coby-to-reveal-five-new-ice-cream-sandwich-tablets-at-ces/</guid>
		<description><![CDATA[Personal electronics manufacturer Coby have announced that they will have a big showing at CES. We&#8217;re set to get five different Ice Cream Sandwich tablets in the 7-10 inch range. A 1GHz ARM Cortex A8 processor sit inside these devices, an unusual choice for Android tablets these days. The only Cortex A8-based processors we&#8217;ve seen [...]]]></description>
			<content:encoded><![CDATA[<p>
	<img src="http://android-mobile-device.com/wp-content/plugins/wp-o-matic/cache/8a634_cobytablets-150x150.jpg" alt="This image has no alt text" />
	</p>
<p><a href="http://android-mobile-device.com/wp-content/plugins/wp-o-matic/cache/e6d2e_cobytablets.jpg"><img class="size-full wp-image-76615 aligncenter" src="http://android-mobile-device.com/wp-content/plugins/wp-o-matic/cache/e6d2e_cobytablets.jpg" alt="" width="530" height="297" /></a></p>
<p>Personal electronics manufacturer Coby have announced that they will have a big showing at CES. We&#8217;re set to get five different Ice Cream Sandwich tablets in the 7-10 inch range. A 1GHz ARM Cortex A8 processor sit inside these devices, an unusual choice for Android tablets these days. The only Cortex A8-based processors we&#8217;ve seen inside Honeycomb-capable models are the 1.5GHz Snapdragon processors inside HTC Flyer and its variants. It&#8217;ll be interesting to see what processor choice Coby has gone with and how Ice Cream Sandwich will perform on it. The tablets will also have 1GB of RAM inside but no other information is know at this time. [<a href="http://www.gizmag.com/coby-ics-budget-tablets/20831/">via</a>]</p>
<p><a href="http://feedads.g.doubleclick.net/~a/kO-bqNbZCPMaXPaz5P0LDVtS9CI/0/da"><img src="http://android-mobile-device.com/wp-content/plugins/wp-o-matic/cache/e6d2e_di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/kO-bqNbZCPMaXPaz5P0LDVtS9CI/1/da"><img src="http://android-mobile-device.com/wp-content/plugins/wp-o-matic/cache/e6d2e_di" border="0"></img></a></p>
]]></content:encoded>
			<wfw:commentRss>http://android-mobile-device.com/2011/12/coby-to-reveal-five-new-ice-cream-sandwich-tablets-at-ces/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Swarm LLC releases free social SDK for Android developers</title>
		<link>http://android-mobile-device.com/2011/12/swarm-llc-releases-free-social-sdk-for-android-developers/</link>
		<comments>http://android-mobile-device.com/2011/12/swarm-llc-releases-free-social-sdk-for-android-developers/#comments</comments>
		<pubDate>Tue, 13 Dec 2011 12:54:41 +0000</pubDate>
		<dc:creator>Android Dev</dc:creator>
				<category><![CDATA[Android News]]></category>

		<guid isPermaLink="false">http://android-mobile-device.com/2011/12/swarm-llc-releases-free-social-sdk-for-android-developers/</guid>
		<description><![CDATA[Swarm LLC has just released a social SDK for Android developers, with tools like leaderboards, achievements, and even cloud storage. read more]]></description>
			<content:encoded><![CDATA[<p><!-- google_ad_section_start -->
<p><img src="http://android-mobile-device.com/wp-content/plugins/wp-o-matic/cache/e73c7_119fb3dc163d35dd27d3c6a9e422e4c3.png" style="float:left;margin-right: 15px" alt="swarm" />Swarm LLC has just released a social SDK for Android developers, with tools like leaderboards, achievements, and even cloud storage.</p>
<p><!-- google_ad_section_end -->
<p><a href="http://www.helloandroid.com/content/swarm-llc-releases-free-social-sdk-android-developers" target="_blank">read more</a></p>
]]></content:encoded>
			<wfw:commentRss>http://android-mobile-device.com/2011/12/swarm-llc-releases-free-social-sdk-for-android-developers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Verizon’s Claims That Google Wallet Leaves Concern for Information Security May Have Legs</title>
		<link>http://android-mobile-device.com/2011/12/verizon%e2%80%99s-claims-that-google-wallet-leaves-concern-for-information-security-may-have-legs/</link>
		<comments>http://android-mobile-device.com/2011/12/verizon%e2%80%99s-claims-that-google-wallet-leaves-concern-for-information-security-may-have-legs/#comments</comments>
		<pubDate>Tue, 13 Dec 2011 12:45:27 +0000</pubDate>
		<dc:creator>Android Dev</dc:creator>
				<category><![CDATA[Android News]]></category>

		<guid isPermaLink="false">http://android-mobile-device.com/2011/12/verizon%e2%80%99s-claims-that-google-wallet-leaves-concern-for-information-security-may-have-legs/</guid>
		<description><![CDATA[A good chunk of the smartphone world &#8211; Verizon&#8217;s Android customers in particular &#8211; were in uproar regarding news that their version of the Galaxy Nexus would not be coming with Google Wallet. We speculated (and still do believe) that their mobile payments partners in ISIS were the leading reason why they were reluctant to [...]]]></description>
			<content:encoded><![CDATA[<p>
	<img src="http://android-mobile-device.com/wp-content/plugins/wp-o-matic/cache/8a634_Google-Wallet-icon-150x150.jpg" alt="This image has no alt text">
	</p>
<p>A good chunk of the smartphone world &ndash; Verizon&rsquo;s Android customers in particular &ndash; were in uproar regarding news that their version of the  <a href="http://phandroid.com/galaxy-nexus/" target="_blank">Galaxy Nexus</a>  would not be coming with Google Wallet.</p>
<p>We speculated (and still do believe) that their mobile payments partners in ISIS were the leading reason why they were reluctant to provide the service. After all, Sprint is still the only carrier to offer it and they only offer it on one device &ndash; the  <a href="http://phandroid.com/nexus-s-4g/" target="_blank">Nexus S 4G</a>. </p>
<p><a href="http://phandroid.s3.amazonaws.com/wp-content/uploads/2011/10/google-wallet.png"><img src="http://android-mobile-device.com/wp-content/plugins/wp-o-matic/cache/8a634_google-wallet-550x268.png" alt="" width="550" height="268"></a></p>
<p>But they officially cited that Google Wallet was left out due to concerns about security and user experience. The last bit of that &ndash; UX &ndash; is so broad a term that one could come up with any estimation as to what they mean, but security? Well, that&rsquo;s a legitimate concern.</p>
<p>Verizon elected not to go into grave detail regarding their security concerns at the time of their statement but we may have a vague look at what&rsquo;s going on via viaForensics. What they reportedly found is just a bit alarming, if true:</p>
<ul>
<li>Google Wallet does securely handle full credit card information</li>
<li>Certain database writes are unencrypted and can contain troubling information, such as account balances, credit limits, last four digits of a credit card and the expiration date &ndash; all pieces of information that can easily be used to social engineer one&rsquo;s way into fraud.</li>
<li>This information is only at risk on rooted devices. Still, not good.</li>
</ul>
<p>There were other security concerns but they have apparently been cleaned up in software upgrades. We assume the issues listed above won&rsquo;t go long without Google&rsquo;s attention though there&rsquo;s no word on what they&rsquo;ll be doing about it and when.</p>
<p>We&rsquo;re not sure if this is the type of stuff holding Verizon or any carriers other than Sprint from offering Google Wallet but we can understand why they wouldn&rsquo;t be comfortable with it.</p>
<p>That&rsquo;s not to say we know for sure whether or not Verizon will offer this service whenever their concerns are addressed, but we&rsquo;d at least know there&rsquo;s a chance. And yes, we&rsquo;re hoping these findings won&rsquo;t delay the Galaxy Nexus even further. Just offer Google Wallet in the market and call it a day. [via <a href="http://www.theverge.com/2011/12/13/2632273/google-wallet-unencrypted-data-security">TheVerge</a>]</p>
<p><a href="http://feedads.g.doubleclick.net/~a/7_xzB8p3gzrT4JiIcfRA0wjtbsY/0/da"><img src="http://android-mobile-device.com/wp-content/plugins/wp-o-matic/cache/8a634_di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/7_xzB8p3gzrT4JiIcfRA0wjtbsY/1/da"><img src="http://android-mobile-device.com/wp-content/plugins/wp-o-matic/cache/8a634_di" border="0"></img></a></p>
]]></content:encoded>
			<wfw:commentRss>http://android-mobile-device.com/2011/12/verizon%e2%80%99s-claims-that-google-wallet-leaves-concern-for-information-security-may-have-legs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom control states in library projects</title>
		<link>http://android-mobile-device.com/2011/12/custom-control-states-in-library-projects/</link>
		<comments>http://android-mobile-device.com/2011/12/custom-control-states-in-library-projects/#comments</comments>
		<pubDate>Tue, 13 Dec 2011 10:50:33 +0000</pubDate>
		<dc:creator>Android Dev</dc:creator>
				<category><![CDATA[Android News]]></category>

		<guid isPermaLink="false">http://android-mobile-device.com/2011/12/custom-control-states-in-library-projects/</guid>
		<description><![CDATA[SDK Version:&#160; M3 RELEASE TO PUBLIC This is a tutorial about adding states to custom controls in library projects. So first, how to create and reference library projects: Setting up library projects, Referencing library projects. Now that the project is setup you can start creating custom controls and states for them. This will all be [...]]]></description>
			<content:encoded><![CDATA[<p><!-- google_ad_section_start -->
<div>
<div>
<div>
<div>
              SDK Version:&nbsp;</div>
<p>                    M3        </p></div>
</p></div>
</div>
<div>
<div>
<div>
                    RELEASE TO PUBLIC        </div>
</p></div>
</div>
<p>This is a tutorial about adding states to custom controls in library projects. So first, how to create and reference library projects: <a href="http://developer.android.com/guide/developing/projects/projects-eclipse.html#SettingUpLibraryProject">Setting up library projects</a>, <a href="http://developer.android.com/guide/developing/projects/projects-eclipse.html#ReferencingLibraryProject">Referencing library projects</a>.</p>
<p>Now that the project is setup you can start creating custom controls and states for them. This will all be inside the library project. Firstly you need to create an attributes xml file in values/attrs.xml (the name has to be attrs.xml) and adding the state:</p>
<div>
<div>
<ol>
<li>
<div><span>&lt;?</span>xml version<span>=</span><span>&quot;1.0&quot;</span> encoding<span>=</span><span>&quot;utf-8&quot;</span><span>?&gt;</span></div>
</li>
<li>
<div><span>&lt;</span>resources<span>&gt;</span> &nbsp; &nbsp;</div>
</li>
<li>
<div>&nbsp; &nbsp; <span>&lt;</span>declare<span>-</span>styleable name<span>=</span><span>&quot;customTextViewState&amp;quot;</span><span>&gt;</span></div>
</li>
<li>
<div>&nbsp; &nbsp; &nbsp; &nbsp; <span>&lt;</span>attr name<span>=</span><span>&quot;state_marked&quot;</span> format<span>=</span><span>&quot;boolean&quot;</span> <span>/&gt;</span></div>
</li>
<li>
<div>&nbsp; &nbsp; <span>&lt;/</span>declare<span>-</span>styleable<span>&gt;</span> &nbsp; &nbsp;</div>
</li>
<li>
<div><span>&lt;/</span>resources<span>&gt;</span></div>
</li>
</ol>
</div>
</div>
<p><!-- google_ad_section_end -->
<p><a href="http://www.helloandroid.com/tutorials/custom-control-states-library-projects" target="_blank">read more</a></p>
]]></content:encoded>
			<wfw:commentRss>http://android-mobile-device.com/2011/12/custom-control-states-in-library-projects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Which country is the most crazy about Android?</title>
		<link>http://android-mobile-device.com/2011/12/which-country-is-the-most-crazy-about-android/</link>
		<comments>http://android-mobile-device.com/2011/12/which-country-is-the-most-crazy-about-android/#comments</comments>
		<pubDate>Tue, 13 Dec 2011 08:22:15 +0000</pubDate>
		<dc:creator>Android Dev</dc:creator>
				<category><![CDATA[Android News]]></category>

		<guid isPermaLink="false">http://android-mobile-device.com/2011/12/which-country-is-the-most-crazy-about-android/</guid>
		<description><![CDATA[Last week Google announced that 10 billion apps per month are being downloaded from the Android Market, and subsequently started their 10 Days of Apps promotion. But in that official announcement was a nice infographic about which countries are crazy about Android apps. Here they are: read more]]></description>
			<content:encoded><![CDATA[<p><!-- google_ad_section_start -->
<p><img src="http://android-mobile-device.com/wp-content/plugins/wp-o-matic/cache/b600b_1157d1a549d660854a2301710436e857.jpg" style="float:left;margin-right: 15px" alt="pic" />Last week Google announced that 10 billion apps per month are being downloaded from the Android Market, and subsequently started their 10 Days of Apps promotion. But in that official announcement was a nice infographic about which countries are crazy about Android apps. Here they are:</p>
<p><!-- google_ad_section_end -->
<p><a href="http://www.helloandroid.com/content/which-country-most-crazy-about-android" target="_blank">read more</a></p>
]]></content:encoded>
			<wfw:commentRss>http://android-mobile-device.com/2011/12/which-country-is-the-most-crazy-about-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook is most used Android app</title>
		<link>http://android-mobile-device.com/2011/12/facebook-is-most-used-android-app/</link>
		<comments>http://android-mobile-device.com/2011/12/facebook-is-most-used-android-app/#comments</comments>
		<pubDate>Tue, 13 Dec 2011 08:15:09 +0000</pubDate>
		<dc:creator>Android Dev</dc:creator>
				<category><![CDATA[Android News]]></category>

		<guid isPermaLink="false">http://android-mobile-device.com/2011/12/facebook-is-most-used-android-app/</guid>
		<description><![CDATA[Nielsen have found that, after the Android Market, Facebook is the most used app (How else will people download it?). This is among people aged 18 to 44, so therefore covers a large array of ages. read more]]></description>
			<content:encoded><![CDATA[<p><!-- google_ad_section_start -->
<p>Nielsen have found that, after the Android Market, Facebook is the most used app (How else will people download it?). This is among people aged 18 to 44, so therefore covers a large array of ages.</p>
<p align="center"><img src="http://android-mobile-device.com/wp-content/plugins/wp-o-matic/cache/cd90e_nielsen-android-apps-by-age.png" width="180" alt="chart" /></p>
<p><!-- google_ad_section_end -->
<p><a href="http://www.helloandroid.com/content/facebook-most-used-android-app" target="_blank">read more</a></p>
]]></content:encoded>
			<wfw:commentRss>http://android-mobile-device.com/2011/12/facebook-is-most-used-android-app/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android Overload: DROID RAZR Receives Ice Cream Sandwich Port, EU Regulators Halt Google/Motorola Review and More</title>
		<link>http://android-mobile-device.com/2011/12/android-overload-droid-razr-receives-ice-cream-sandwich-port-eu-regulators-halt-googlemotorola-review-and-more/</link>
		<comments>http://android-mobile-device.com/2011/12/android-overload-droid-razr-receives-ice-cream-sandwich-port-eu-regulators-halt-googlemotorola-review-and-more/#comments</comments>
		<pubDate>Tue, 13 Dec 2011 07:46:38 +0000</pubDate>
		<dc:creator>Android Dev</dc:creator>
				<category><![CDATA[Android News]]></category>

		<guid isPermaLink="false">http://android-mobile-device.com/2011/12/android-overload-droid-razr-receives-ice-cream-sandwich-port-eu-regulators-halt-googlemotorola-review-and-more/</guid>
		<description><![CDATA[Hope you all had a great weekend! Now, it&#8217;s back to the hustle and grind of the work week and with that comes the Android Overload. We tend to get a whole lot of stories from over the weekend and not all of them make the cut. For those that don&#8217;t. We place them here. [...]]]></description>
			<content:encoded><![CDATA[<p>
	<img src="http://android-mobile-device.com/wp-content/plugins/wp-o-matic/cache/ce230_PhandroidICON7.jpeg" alt="This image has no alt text">
	</p>
<p><a href="http://phandroid.com/2011/12/13/android-overload-droid-razr-receives-ice-cream-sandwich-port-eu-regulators-halt-googlemotorola-review-and-more/phandroidlogo-96/" rel="attachment wp-att-76606"><img src="http://android-mobile-device.com/wp-content/plugins/wp-o-matic/cache/ce230_PHANDROIDlogo7.jpg" alt="" width="550" height="264"></a></p>
<p>Hope you all had a great weekend! Now, it&rsquo;s back to the hustle and grind of the work week and with that comes the Android Overload. We tend to get a whole lot of stories from over the weekend and not all of them make the cut. For those that don&rsquo;t. We place them here. Think of it as a second chance for stories on the internet before they drift away into obscurity. So have a look around and if you see something you like, leave your thoughts. We&rsquo;d love to hear &lsquo;em.</p>
<ul>
<li> <a href="http://phandroid.com/motorola-droid-razr/" target="_blank">Motorola Droid RAZR</a>  receives Ice Cream Sandwich port. Increases sex appeal tenfold. [<a href="http://briefmobile.com/droid-razr-receives-ice-cream-sandwich-port">BriefMobile</a>]</li>
<li>Galaxy Tab 10.1 receives audio docking station from iLuv. [<a href="http://sammyhub.com/2011/12/13/galaxy-tab-gets-first-audio-docking-station-from-iluv/">SammyHub</a>]</li>
<li>Flash Player update in the Android Market. [<a href="https://market.android.com/details?id=com.adobe.flashplayer">Market Link</a>]</li>
<li>Huawei Fusion is a prepaid AT&amp;T Android phone for only $110. [<a href="http://www.electronista.com/articles/11/12/12/basic.android.phone.atts.smartphone.entry.point/">Electronista</a>]</li>
<li>Majel is Google&rsquo;s response to Siri? End of the year release? [<a href="http://phandroid.com/androidandme.com/2011/12/news/googles-response-to-siri-is-codenamed-majel-could-be-released-by-end-of-year/">AndroidandMe</a>]</li>
<li>Best free phones on every carrier are dominated by Android. [<a href="http://gizmodo.com/5867356/the-best-free-phone-on-every-carrier">Gizmodo</a>]</li>
<li>AT&amp;T is trying to figure out how to revise T-Mobile deal. [<a href="http://www.reuters.com/article/2011/12/13/us-tmobile-att-antitrust-idUSTRE7B81ET20111213">Reuters</a>]</li>
<li>Bell and Virgin (Canada) release LG Eclypse (US Mytouch). [<a href="http://phandroid.com/mobilesyrup.com/2011/12/12/bell-and-virgin-release-the-lg-eclypse/">MobileSyrup</a>]</li>
<li>Amazon readies Kindle Fire update to address bugs. [<a href="http://www.nytimes.com/2011/12/12/technology/personaltech/amazons-fire-some-say-may-become-the-edsel-of-tablets.html?_r=1&amp;pagewanted=all">NYTimes</a>]</li>
<li>HTC sues Citi in Taiwan after share drop. [<a href="http://www.reuters.com/article/2011/12/13/us-htc-idUSTRE7BC0AQ20111213">Reuters</a>]</li>
<li>Makers of the browser app for Andorid, Bolt, closes up shop for good. [<a href="http://boltbrowser.com/">Bolt</a>]</li>
<li>How would Apple design the Galaxy Tab? Like this. [<a href="http://briefmobile.com/apples-lawyers-set-to-design-the-next-samsung-galaxy-tab">BriefMobile</a>]</li>
<li>European Union regulators halt Google/Motorola merger review. [<a href="http://www.bloomberg.com/news/2011-12-12/eu-stops-clock-on-google-motorola-mobility-merger-review.html">Bloomberg</a>]</li>
</ul>
<p><a href="http://feedads.g.doubleclick.net/~a/adamIPI0D_wgYrNgjdjzQnWfBhk/0/da"><img src="http://android-mobile-device.com/wp-content/plugins/wp-o-matic/cache/ce230_di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/adamIPI0D_wgYrNgjdjzQnWfBhk/1/da"><img src="http://android-mobile-device.com/wp-content/plugins/wp-o-matic/cache/8a634_di" border="0"></img></a></p>
]]></content:encoded>
			<wfw:commentRss>http://android-mobile-device.com/2011/12/android-overload-droid-razr-receives-ice-cream-sandwich-port-eu-regulators-halt-googlemotorola-review-and-more/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Carrier IQ Releases 19 Page Report Covering Their Business Practices In Painstaking Detail</title>
		<link>http://android-mobile-device.com/2011/12/carrier-iq-releases-19-page-report-covering-their-business-practices-in-painstaking-detail/</link>
		<comments>http://android-mobile-device.com/2011/12/carrier-iq-releases-19-page-report-covering-their-business-practices-in-painstaking-detail/#comments</comments>
		<pubDate>Tue, 13 Dec 2011 07:06:09 +0000</pubDate>
		<dc:creator>Android Dev</dc:creator>
				<category><![CDATA[Android News]]></category>

		<guid isPermaLink="false">http://android-mobile-device.com/2011/12/carrier-iq-releases-19-page-report-covering-their-business-practices-in-painstaking-detail/</guid>
		<description><![CDATA[I don&#8217;t even know where to start with Carrier IQ gate. It has blown up into this huge mobile security issue, snowballing into probably the worse PR nightmare the company could have ever expected. Ever since it was first exposed in HTC devices, the software has been found in use on almost every device and [...]]]></description>
			<content:encoded><![CDATA[<p>
	<img src="http://android-mobile-device.com/wp-content/plugins/wp-o-matic/cache/ce230_carrieriq-logo-150x150.jpg" alt="This image has no alt text" />
	</p>
<p><a href="http://phandroid.com/2011/12/13/carrier-iq-releases-19-page-report-covering-their-business-practices-in-painstaking-detail/carrieriq-logo/" rel="attachment wp-att-76599"><img class="size-full wp-image-76599 aligncenter" src="http://android-mobile-device.com/wp-content/plugins/wp-o-matic/cache/ce230_carrieriq-logo.jpeg" alt="" width="409" height="214" /></a></p>
<p>I don&#8217;t even know where to start with Carrier IQ gate. It has blown up into this huge mobile security issue, snowballing into probably the worse PR nightmare the company could have ever expected. Ever since it was first exposed in HTC devices, the software has been found in use on almost every device and OS under the sun, as commissioned by whichever carrier those devices are running on. Even the FBI could have been using the data collected for national security. It&#8217;s <em>that</em> big. Well, Carrier IQ wants to give you their complete, exhaustive response to all the concerns and complaints consumers have been having with the service in this 19 page PDF. So, if you were one of those folks with your pitchforks, put it down for just a few minutes, grab your spectacles instead and read up.</p>
<p>[<a href="http://www.carrieriq.com/PR.20111212.pdf">Full Carrier IQ Press Release</a>]</p>
<p><a href="http://feedads.g.doubleclick.net/~a/cqYLfe8E9oarPIUNScnhwaVwGow/0/da"><img src="http://android-mobile-device.com/wp-content/plugins/wp-o-matic/cache/ce230_di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/cqYLfe8E9oarPIUNScnhwaVwGow/1/da"><img src="http://android-mobile-device.com/wp-content/plugins/wp-o-matic/cache/ce230_di" border="0"></img></a></p>
]]></content:encoded>
			<wfw:commentRss>http://android-mobile-device.com/2011/12/carrier-iq-releases-19-page-report-covering-their-business-practices-in-painstaking-detail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Verizon Galaxy Nexus With Official Extended Battery Caught In The Wild [Pics]</title>
		<link>http://android-mobile-device.com/2011/12/verizon-galaxy-nexus-with-official-extended-battery-caught-in-the-wild-pics/</link>
		<comments>http://android-mobile-device.com/2011/12/verizon-galaxy-nexus-with-official-extended-battery-caught-in-the-wild-pics/#comments</comments>
		<pubDate>Tue, 13 Dec 2011 05:50:25 +0000</pubDate>
		<dc:creator>Android Dev</dc:creator>
				<category><![CDATA[Android News]]></category>

		<guid isPermaLink="false">http://android-mobile-device.com/2011/12/verizon-galaxy-nexus-with-official-extended-battery-caught-in-the-wild-pics/</guid>
		<description><![CDATA[The Galaxy Nexus is almost upon us (we&#8217;re now hearing the &#8212; take it with a grain of salt &#8212; 20th) and if you were looking to do some serious gaming or streaming as soon as you get your hands on the device, you&#8217;ve probably considered forking over the cash for the official 2100mAh extended [...]]]></description>
			<content:encoded><![CDATA[<p>
	<img src="http://android-mobile-device.com/wp-content/plugins/wp-o-matic/cache/9f639_Gnex-extended-150x150.jpg" alt="This image has no alt text">
	</p>
<p><a href="http://phandroid.com/2011/12/13/verizon-galaxy-nexus-with-official-extended-battery-caught-in-the-wild-pics/gnex-extended3/" rel="attachment wp-att-76594"><img src="http://android-mobile-device.com/wp-content/plugins/wp-o-matic/cache/9f639_Gnex-extended3.jpg" alt="" width="494" height="596"></a><br />
The  <a href="http://phandroid.com/galaxy-nexus/" target="_blank">Galaxy Nexus</a>  is almost upon us (we&rsquo;re now hearing the &mdash; take it with a grain of salt &mdash; 20th) and if you were looking to do some serious gaming or streaming as soon as you get your hands on the device, you&rsquo;ve probably considered forking over the cash for the official 2100mAh extended battery. Definitely not the behemoth batteries were normally used to (see  <a href="http://phandroid.com/htc-rezound/" target="_blank">HTC Rezound</a>) , the Galaxy Nexus extended battery is more slim and stylish. Just how much extra thickness are we talking about here? Well, check out the pictures below to see for yourself!</p>
<p><a href="http://phandroid.com/2011/12/13/verizon-galaxy-nexus-with-official-extended-battery-caught-in-the-wild-pics/gnex-extended/" rel="attachment wp-att-76593"><img src="http://android-mobile-device.com/wp-content/plugins/wp-o-matic/cache/9f639_Gnex-extended-550x459.jpg" alt="" width="550" height="459"></a><br />
What do you guys think? Does the extended battery add too much junk in the trunk? Or is the slightly added thickness and $50 price tag worth having a few extra hours of data streaming?</p>
<p>[Via <a href="http://www.droid-life.com/2011/12/12/video-verizons-galaxy-nexus-poses-with-extended-battery-inside/">Droid-Life</a>]</p>
<p><a href="http://feedads.g.doubleclick.net/~a/pXLwlJ960aaxLsk7tHIk1Y2M0r4/0/da"><img src="http://android-mobile-device.com/wp-content/plugins/wp-o-matic/cache/9f639_di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/pXLwlJ960aaxLsk7tHIk1Y2M0r4/1/da"><img src="http://android-mobile-device.com/wp-content/plugins/wp-o-matic/cache/ce230_di" border="0"></img></a></p>
]]></content:encoded>
			<wfw:commentRss>http://android-mobile-device.com/2011/12/verizon-galaxy-nexus-with-official-extended-battery-caught-in-the-wild-pics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

