Do the network actions on another thread.
For example:
new Thread(new Runnable(){ @Override public void run() { // Do network action in this function }}).start();
And add this to file AndroidManifest.xml:
<uses-permission android:name="android.permission.INTERNET"/>