<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">
    
    <TextView 
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="Enter a channel name below"
    />
    
    <EditText
        android:id="@+id/hostNameChannel"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="5dp"
		android:hint="channel name"
    />
    
    <LinearLayout
        android:orientation="horizontal"
        android:gravity="center"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="5dp">
        
        <Button
            android:id="@+id/hostNameOk"
            android:layout_width="120dp"
            android:layout_height="wrap_content"
    	    android:text="OK"
        />
        
        <Button
            android:id="@+id/hostNameCancel"
            android:layout_width="120dp"
            android:layout_height="wrap_content"
    	    android:text="Cancel"
        />
    </LinearLayout>
</LinearLayout>
