I just recently upgraded to the new Samsung Galaxy S II (or Epic 4G in Sprint speak), and today I’m posting my first video about the phone. I’m really liking the Galaxy S II, mostly because of it’s beautiful, large AMOLED screen—it truely is very pretty!
It’s not something you need to do everyday, but when you’re locked out of your phone, knowing how to do a hard reset is crucial. So with that, here are the steps to perform a factory reset on the Samsung Galaxy S II Android phone.
Note: Remove your SD card. I know some people say this is optional and in my experience it is technically optional. But here’s the thing, I’m not interested in taking any chances when it comes to my data. I keep my contacts backed up on my SD card as well as store pictures, documents, etc, and I’m not going to take a chance on loosing them.
If any of that is unclear, hopefully this video will help clear things up…
Just had some fun chasing this one down! If you’re getting this exception, go look at where you define your table schema. Most likely this exception indicates a malformed table definition statement…in my case I was missing a comma!
Feb 11
23
I think I might have mentioned once that I was having trouble with an Evo reboot loop… If I didn’t let me give some background. I got my HTC Evo 4G back in June 2010 when Sprint first released them. It’s a great phone, but sometime the following September a problem arose where it would randomly restart while I was in the middle of doing something (using Google Navigation, for example, seemed to be a real problem). To make matters worse, it would usually proceed to get stuck in a reboot loop, and eventually just freeze on the initial power on screen (white with HTC in green letters). This shutdown/restart problem continued to get worse until a couple of weeks ago it was at the point where I could do almost nothing with my phone without it rebooting–not acceptable!
Finally, last week, I took it back to Sprint to see what they could do. I have to admit I was ready for a fight…I figured they wouldn”t be very willing to help me. To my surprise they said they needed to reset the phone and if that didn’t work they’d replace it. I knew the reset wouldn’t work ’cause I’d done that plenty of times myself, but I figured I’d humor them. No suprise, 5 minutes after the reset, my Evo was back to its reboot loop. So, true to their word, they (Sprint) ordered me another phone!
I got my ‘new’ Evo a couple days ago, and while I don’t know whether it’s actually new or just refurbished (they claimed not to know either), it *appears* to be brand new. At any rate, I’ve not seen the Evo reboot loop once so far! Now, to be fair, it took a few months to see it the first time, but I’m hoping for the best! Hopefully, it was just an early manufacturing bug or something.
All that to say, if you are having similar issues, I recommend taking it in…they might actually help you!
Also, I’ve seen other posts around the Internet about people experiencing the Evo reboot loop, but I’ve not seen any real answers. If you have any idea to the root cause, and better yet a real solution, please post it here! It would be a huge help to those of us with the same Evo reboot loop issue.
I’ll post any new developments as well…
I just came across this…http://androidbeanie.com/…hilarious! I have to say I never cease to be amazed at what people come up with! I might just have to get me one of these!
Feb 11
2
It’s not so much a problem as it use to be, but Google has finally released the web version of the Android Market! They seem to have done a decent job of it too. Now you easily browse the market from your computer rather than just using the small screen on your phone. There, of course, have been other websites that have filled this gap until now, but now the official Android Market can be browsed from your desktop.
A quick note you Linux based Android developers… I have was trying to use ADB this morning and discovered that since my update to the Android SDK to version 8, the ADB executable is no longer located at …/android-sdk-linux_x86/tools/adb! It is now at …/android-sdk-linux_x86/platform-tools/adb. It took me longer than it should have to figure this out and I couldn’t find the info on Google anywhere…so there you have it!
It’s an example of what Intents are all about in Android, but today was the first time I’ve used the android.content.Intent.ACTION_SEND action to allow users to send emails, post to Twitter or Facebook, send text messages, etc! It couldn’t be any easier, here’s the code:
|
1 2 3 4 5 |
Intent myIntent = new Intent(android.content.Intent.ACTION_SEND);
myIntent.setType("text/plain");
myIntent.putExtra(Intent.EXTRA_SUBJECT, "My Subject Line");
myIntent.putExtra(Intent.EXTRA_TEXT, "My Message!");
startActivity(Intent.createChooser(myIntent, "Choose app")); |
That’s it! Any applications that the user has installed that can handle the ACTION_SEND intent will be listed in a nice system popup window. On my Droid I see Facebook, Gmail, Messaging (text messages), and Twitter.
Enjoy…