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

Save All/Format All Documents in Visual Studio

Sub FormatAll()    For Each proj As Project In DTE.Solution.Projects      FormatFileRecur(proj.ProjectItems())    Next End Sub Sub FormatFileRecur(ByVal projectItems As EnvDTE.ProjectItems)    For Each pi As EnvDTE.ProjectItem In projectItems      If pi.Collection Is projectItems Then        Dim pi2 As EnvDTE.ProjectItems = pi.ProjectItems        Try          If pi.Name.EndsWith(".cs") Then            If Not (pi.Name.EndsWith("Designer.cs")) Then               If Not pi.IsOpen Then pi.Open(Constants.vsViewKindCode)             pi.Document.Activate()             DTE.ExecuteCommand("Edit.FormatDocum...