<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.8.4" -->
<rss version="0.92">
<channel>
	<title>MSINO &#124; Mobile Sino</title>
	<link>http://www.msino.com</link>
	<description>Professional mobile service</description>
	<lastBuildDate>Sat, 02 Jan 2010 13:14:25 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Nexus One Rooted Already</title>
		<description>[caption id="" align="aligncenter" width="337" caption="google nexus one root"][/caption]

 </description>
		<link>http://www.msino.com/nexus-one-rooted-already/</link>
			</item>
	<item>
		<title>Top five Android apps to download</title>
		<description>So, you've just got yourself a shiny new Android-powered handset. Perhaps you picked up the Motorola Milestone. Maybe you opted for Samsung's Galaxy i7500. Or did you hold out for an HTC Hero? Whatever you picked, you've granted yourself access to one of the most promising mobile platforms around.
But entering ...</description>
		<link>http://www.msino.com/top-five-android-apps-to-download/</link>
			</item>
	<item>
		<title>WebView Applications</title>
		<description>Around two years ago I asked why there weren’t that many successfulJava ME consumer applications that weren’t games. I went on to conclude that the few that were successful were just a window on more open, capable and consistent processing somewhere else.

It’s interesting to see that a number of development ...</description>
		<link>http://www.msino.com/webview-applications/</link>
			</item>
	<item>
		<title>Forecast widget for Android 1.5 (with source!)</title>
		<description>Over the past few months I’ve been working on the new AppWidget framework that was released as part of the Android 1.5 SDK. I wanted to write a really in-depth widget and share it, so I decided to write a forecast widget.
It offers multiple configurations (both a 2×1 and tiny 1×1), ...</description>
		<link>http://www.msino.com/forecast-widget-for-android-1-5-with-source/</link>
			</item>
	<item>
		<title>Android on Reference Design</title>
		<description>If you are interested in Google’s Android, the BBC has just posted an interesting video interview with Andy Rubin, Google’s director of mobile platforms. It shows Android on a 3G device running at 300MHz on a Qualcomm MSM 7200 - the same processor used by the latest HTC (Windows Mobile) Touch ...</description>
		<link>http://www.msino.com/android-on-reference-design/</link>
			</item>
	<item>
		<title>Android Free to Paid</title>
		<description>According to reports, over the last few hours the Android store went live showing paid applications to some end users in the US.

Viewing paid listings requires an update to the phone firmware. So far, this only seems to have happened to some phones in the US. My phone in the ...</description>
		<link>http://www.msino.com/android-free-to-paid/</link>
			</item>
	<item>
		<title>How to Measure Elapsed Time</title>
		<description>Many applications have to measure time intervals. Android has lots of SystemClock APIs and initially it might be confusing what to use. To measure elapsed time you can use…

System.nanoTime();
An elapsed time timer just calls this twice and subtracts the end time from the start time.
The boom-mobile source code has a great StopWatch ...</description>
		<link>http://www.msino.com/how-to-measure-elapsed-time/</link>
			</item>
	<item>
		<title>How to Disable the Keyguard</title>
		<description>There are some types of application where you need to programatically disable the keyguard. It’s also sometimes useful to temporarily do this when you are presenting a demo. com.android.alarmclock.AlarmAlert in the Android OS source code provides and example how to do this…

    private synchronized void enableKeyguard() {
        if (mKeyguardLock != null) ...</description>
		<link>http://www.msino.com/how-to-disable-the-keyguard/</link>
			</item>
	<item>
		<title>How to Detect Call State</title>
		<description>Some applications need to do clever things whenever there’s an incoming or outgoing call. There’s a great example of this in the source code for ‘five’ (an app providing remote access to your PC’s music collection) where the music PlaylistService listens for incoming calls so it can temporarily pause playback…

TelephonyManager tm ...</description>
		<link>http://www.msino.com/how-to-detect-call-state/</link>
			</item>
	<item>
		<title>How to Make a Call</title>
		<description>One common requirement I see in specifications is to allow the application to make a phone call. The usual way is to use an intent with Intent.ACTION_CALL.
Here’s an example from com.android.phone.PhoneInterfaceManager…String url = createTelUrl(number);if (url == null) {return;}Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse(url));intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);intent.setClassName(mApp, PhoneApp.getCallScreenClassName());mApp.startActivity(intent);
createTelUrl is defined in com.android.phone.PhoneInterfaceManager
Don’t forget to add…&#60;uses-permission id="android.permission.CALL_PHONE"/&#62;…to your manifest.
Note ...</description>
		<link>http://www.msino.com/how-to-make-a-call/</link>
			</item>
</channel>
</rss>
