How To Take ScreenShot In Galaxy Nexus
Posted by blogmeister on
May 26, 2012
Considering that the Galaxy Nexus has Ice Cream Sandich as its operating system, this may well be the same with other Android phones running the same OS.
To take a screenshot in Galaxy Nexus, press both power button + volume down. Snap!
You should then see an animation showing you the screenshot.
Donations appreciated. Every little $ helps. Or click Google +1.tags: galaxy nexus, ice cream sandwich, nexus, os, power, screenshot, volume
No Comments
How To Permanently Disable Services In Android OS
Posted by blogmeister on
July 24, 2011
One thing that annoys most users is the fact that unwanted programs that users do not need often are ran as services. Worse, if they persistently run in the background even after you force stop them, it can get irritating.
Such is the case of Android-run phones. I recently installed Skype and found it annoying that it kept running as a service even though I force stopped it. Upon more research, I found out that this is a known issue and it can never go away unless you root your phone or if you become super admin.
Check your Android OS version to see if they are supported by root programs scatter all over the Internet. Mine is currently at 2.3.3 but I do not have plans to root it since I am waiting for 2.3.4. That version solves a battery usage issue when WIFI is turned on.
Do take note that rooting your Android phone will void the warranty, similar to what happens when you jailbreak an iPhone.
Donations appreciated. Every little $ helps. Or click Google +1.tags: android, disable, os, service
5 Comments
Java Get OS Name
Posted by blogmeister on
September 14, 2008
This method returns the name of the operating system that the program is running in.
|
1 2 3 4 5 6 7 8 9 10 11 12 |
public static String getOsName() { String os = ""; if (System.getProperty("os.name").toLowerCase().indexOf("windows") > -1) { os = "windows"; } else if (System.getProperty("os.name").toLowerCase().indexOf("linux") > -1) { os = "linux"; } else if (System.getProperty("os.name").toLowerCase().indexOf("mac") > -1) { os = "mac"; } return os; } |









