Galaxy S is upgraded to Android 2.3.5
I just got my Galaxy S upgraded about a month ago. Today, I found there is Android 2.3.5 update. The speed of rolling out is getting faster. I believe Samsung is working closer with Google.
Moreover, I found the new version have some performance enhancements too! I am already happy enough about it.
Acer Iconia A500 has been upgraded to 3.2
That's quick, my Acer Iconia A500 has another update! Yesterday, I downloaded the latest update from Acer. Today, I got it updated to Android 3.2.
The first enhancement I picked up is the performance. It seems to get 2X speed! Maybe, I will find more new features in next few days.
I am still putting my faith on Windows Phone
I am an Android Application Developer and I am not a Windows Phone owner. But I still believe Windows Phone will have at least 25% of market share in the smart phone sector. I think Windows Phone will success in the Enterprise Market. There are a lot of companies using Exchange Server. If Windows Phone can work better with Exchange Server better than Android and iPhone, that makes sense. Windows Phone will be the best option for a lot companies as their staff phone. Moreover, Microsoft got a strong partner network. They can use their partner network to encourage the developers to develop their apps in Windows Phone. I believe only basis on these two points, Windows Phone will success!
Android - On Screen Notification
In the C# Wolrd, we always use "MessageBox.Show (String)" to generate on screen notification (Pop-Up Message Box). In the Android, it has a similar thing calls toast. That is a small square box on the screen. Well, this is not just a single line of code, like Toast.Show(string). But that is just a few lines of codes more.
Code
Context context = getApplicationContext(); | |
CharSequence msgText= "Test"; | |
Toast toast = Toast.makeText(context,msgText, Toast.LENGTH_LONG); | |
toast.show(); |