Socket x Componentes de tela Android

Pessoal,

Estou criando um activity, com dois components um botão e um edittext.
No mesmo activity eu crio um servidor Socket, porém quando eu inicio os componentes de tela desaparecem.
Alguém sabe o pq?

Obrigado,

Segue código:


public class Startup extends Activity
{
	/** Called when the activity is first created. */
	@Override
	public void onCreate(Bundle savedInstanceState)
	{
		super.onCreate(savedInstanceState);
		setContentView(R.layout.main);
		
		try
		{
			ServerSocket serverSocket;
			serverSocket = new ServerSocket(9080);
			
			Socket socket = serverSocket.accept();
			
			socket.getInputStream().read(new byte[300]);
		}
		catch (IOException e)
		{
			e.printStackTrace();
		}
	}
}
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
	android:orientation="vertical" android:layout_width="fill_parent"
	android:layout_height="fill_parent">

    <EditText android:layout_height="wrap_content" android:id="@+id/edtMensagemRecebida" android:layout_width="match_parent" />

    <Button android:text="Iniciar" android:id="@+id/btnIniciar" android:layout_width="wrap_content" android:layout_height="wrap_content" />
	
</LinearLayout>