I have an app where the user submits some data in a form which is then sent to a server. I am testing it on a tablet and an Android smartphone (Galaxy S2). On the tablet, as soo
You're doing your network operations from the main thread, which is a very very bad idea. You should at least do this inside an AsyncTask.