<?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"
    >
    
    <Button android:layout_width="wrap_content"
    	    android:layout_height="wrap_content"
    	    android:id="@+id/start_background_thread_btn"
    	    android:text="@string/start_background_thread"
    	    android:layout_gravity="center"/>

	<LinearLayout android:layout_width="wrap_content"
			      android:layout_height="wrap_content"
			      android:orientation="horizontal"
			      android:layout_gravity="center">
			      
		<TextView android:layout_width="wrap_content"
			      android:layout_height="wrap_content"
			      android:text="@string/thread_status"
			      android:textSize="20dp"
			      android:paddingRight="5dp"/>
			      
		<TextView android:layout_width="wrap_content"
			      android:layout_height="wrap_content"
			      android:id="@+id/thread_status_label"
			      android:text="@string/thread_not_started"
			      android:textSize="20dp"/>
	</LinearLayout>
</LinearLayout>
