<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
							android:layout_width="match_parent"
							android:layout_height="wrap_content"
							android:orientation="vertical"
							android:paddingBottom="@dimen/dialog_vertical_margin"
							android:paddingLeft="@dimen/dialog_horizontal_margin"
							android:paddingRight="@dimen/dialog_horizontal_margin"
							android:paddingTop="@dimen/dialog_vertical_margin">

	<EditText
		android:id="@+id/enc_dec_net_name"
		android:layout_width="match_parent"
		android:layout_height="wrap_content"
		android:hint="@string/field_net_name"/>

	<EditText
		android:id="@+id/enc_dec_current_passphrase"
		android:layout_width="match_parent"
		android:layout_height="match_parent"
		android:hint="@string/field_current_passphrase"
		android:inputType="textVisiblePassword"/>

	<EditText
		android:id="@+id/enc_dec_new_passphrase"
		android:layout_width="match_parent"
		android:layout_height="match_parent"
		android:hint="@string/field_new_passphrase"
		android:inputType="textVisiblePassword"/>

</LinearLayout>