Rework the account wizard using fragments.
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content" android:layout_height="wrap_content"
>
<TextView android:id="@+id/title"
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:text="TITLE" />
<View android:id="@+id/separator" android:layout_width="match_parent" android:layout_height="4dp"/>
<ProgressBar android:id="@+id/progress"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_below="@+id/separator"
android:layout_alignParentLeft="true"
android:indeterminateOnly="true" android:indeterminate="true" android:indeterminateBehavior="repeat"/>
<TextView android:id="@+id/message"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_below="@+id/separator"
android:layout_toRightOf="@id/progress"
android:text="TITLECONTENT"/>
</RelativeLayout>