Skip to main content

Comparison Samsung Galaxy Nexus Vs S2

Choose the best smartphone before you buy. Recently Google Launched Nexus with Android Ice Cream Sandwich that hardware feature is less when compare to Samsung Galaxy S2 .
Comparison Samsung Galaxy Nexus Vs S2

In future if Samsung is providing a firmware update to Galaxy S2 then i would prefer Galaxy S2 instead of Galaxy Nexus. Share your opinion in the comment section

Comparison of Samsung Galaxy Nexus Vs Samsung Galaxy S2
    Samsung Galaxy Nexus
    Samsung Galaxy S II
   OS
Android 4.0 Ice Cream SandwichAndroid 2.3 Gingerbread
   Processor1.2 GHz Dual Core Processor1.2 GHz Dual Core Application Processor
   Display4.65” (1280X720) HD Super AMOLED4.27" WVGA (480×800) Super AMOLED Plus
  Camera (Rear)5 MP AF with LED Flash, zero shutter lag and fast shot2shot8.0 Mega Pixel Camera AF with LED Flash
  Front Camera1.3 MP for Video Call2.0 MP Camera
  Video1080p Full HD video Recording and Playback @ 30fps1080p Full HD video Recording & Playback @ 30fps
  Memory1GB RAM1GB RAM
  Storage16GB/32GB Internal memory16GB/32GB Internal memory
  External StorageNo supportUp to 32GB via MicroSD card
  NetworkHSPA+ 21Mbps/HSUPA 5.76Mbps (LTE version available depending on the region)HSPA+ 21Mbps/HSUPA 5.76Mbps
  Dimension135.5 x 67.94 x 8.94mm125.3 x 66.1 x 8.49mm
  Weight135g116g
  Battery1750mAh1650mAh
  ConnectivityBluetooth v3.0
USB 2.0
Wi-Fi 802.11 a/b/g/n (2.4GHz/ 5GHz)
NFC
Bluetooth v3.0+HS
USB v2.0
Wi-Fi a/b/g/n
  ConnectorsMicroUSB, 3.5mm Ear JackMicroUSB, 3.5mm Ear Jack
  ColorsSingle ColorBlack, White

Update :
Samsung UK announced that Galaxy S2 can be upgraded with Android Ice cream sandwich firmware

Comments

Popular posts from this blog

Gradle project sync failed. Basic functionality (e.g, editing, debugging) will not work properly.

Gradle is an open source build tool which help us to accelerate developer productivity. Go to Gradle Services website(http://services.gradle.org/distributions/) and download the latest version Download the latest version gradle-4.7-rc-1-all.zip ( Latest version while writing this article) and you can download greater than 4.7 if available and make sure the zip file contains "all" keyword (gradle-*.*-rc-*-all.zip). Go to your download location and unzip the downloaded file Android Studio > File >  Settings > Build, Execution, Deployment  Gradle Project-level settings -> Select Use local gradle distribution -> Select the unzip folder of downloaded gradle version -> Click OK button to exit from the Settings window. Please Wait until Gradle build completes and your problem have been resolved.   If gradle build failed, follow few more steps to get resolved Final step to resolve this error Go to your project -> Gradle script ->

What is GMMXlE (Google Doodle)?

In every celebration Google does something to their Logo to make it doodle but that could be easy to read Google name made it under that logo but this time they have made it Doodle for the new year Eve 2011 which is GMMXlE . This Doodle is a great brain teaser for all the people to find out what it is. What Is GMMXlE? The First G and Last E stands For Google Logo First Character and Last Character i.e GE( G oogl e ). And MMXl is a Roman Letter for 2011. Roman Letter Values For Appropriate Letters M Stands For 1000 X Stands For 10 l Stands For 1 Apply these values Under this Formula To Turn it Into 2011 MMXl 2MXl 2(1000)+(10)+1 2011 Finally It is GMMXlE-G2011E

Form Input Widget on Flutter Android - Text, Slider, Switch, Date Picker, Buttons & Check Box

  Learn how you can use the different Form Input Widget on Flutter Android - Text, Slider, Switch, Date Picker, Buttons & Check Box This Application will give a basic idea like how you can create different widgets for the form panel designing. Video Tutorial import 'package:flutter/material.dart'; import 'package:intl/intl.dart' as intl; class FormWidgetsDemo extends StatefulWidget { const FormWidgetsDemo({super.key}); @override State createState() => _FormWidgetsDemoState(); } class _FormWidgetsDemoState extends State { final _formKey = GlobalKey (); DateTime date = DateTime.now(); double maxValue = 0; bool? checkBoxFeature = false; bool sliderFeature = false; @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: const Text('Hakeem Innovation Technology'), ), body: Form( key: _formKey, child: Scrollbar( child: Align( ali