Skip to main content

Android will remain the No. 2 mobile operating system in the world

Gartner (NYSE: IT) has predicted that Android will remain the No. 2 mobile operating system in the world behind not Apple, but Nokia's (NYSE: NOK) Symbian OS.


Android will capture 29.6 percent of the market, compared to 30.2 for Symbian and 14.9 percent for iOS, Gartner predicted.

http://www.gartner.com/it/page.jsp?id=1434613

Comments

Popular posts from this blog

Wave Undo

To implement Undo, the simplest way is to use a MemoryStream object in your WaveDisplayForm (MDI Child) and simply serialize the Wave (which should be marked as [Serializable] to the stream and hold on to the stream object. private MemoryStream _undoStream = new MemoryStream(); private bool _canUndo = false; public void SaveForUndo() {      BinaryFormatter bf = new BinaryFormatter();      bf.Serialize(_undoStream, wave);      _undoStream.Flush();      // This rewinds the stream so that when it is used for deserialization, it's ready to use,     // otherwise, the deserialization will start deserializing from the end of the stream and would fail.      _undoStream.Position = 0;      _canUndo = true; }   public void Undo() {      BinaryFormatter bf = new BinaryFormatter();      ...