Skip to main content

Verizon's first 4G-LTE phone

Verizon's first 4G-LTE phone, an Android smartphone called "Thunderbolt," will reportedly make its first official public appearance at CES next week.


It is expected to have a 4.3-inch touchscreen with WXGA resolution -- 1,280 by 800 pixels. If true, this could be the highest resolution screen on a smartphone. The iPad resolution is only XGA = 1024-by-768
http://www.droid-life.com/2010/12/29/verizon-focusing-on-4g-lte-android-devices-not-the-iphone-at-ces/

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();      ...