| LEFT | RIGHT | 
|---|
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> | 
| 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | 
| 3               android:layout_width="match_parent" | 3               android:layout_width="match_parent" | 
| 4               android:layout_height="match_parent" | 4               android:layout_height="match_parent" | 
| 5               android:orientation="vertical" | 5               android:orientation="vertical" | 
| 6               android:background="#ffffff" | 6               android:background="#ffffff" | 
| 7               android:padding="10dp" > | 7               android:padding="10dp" > | 
| 8     <!-- Main content view, filled dynamically --> | 8     <!-- Main content view, filled dynamically --> | 
| 9     <LinearLayout android:id="@+id/abb_main_content" | 9     <LinearLayout android:id="@+id/abb_main_content" | 
| 10                   android:layout_width="match_parent" | 10                   android:layout_width="match_parent" | 
| 11                   android:layout_height="0dip" | 11                   android:layout_height="0dip" | 
| 12                   android:layout_weight="1" | 12                   android:layout_weight="1" | 
| 13                   android:paddingLeft="10dp" | 13                   android:paddingLeft="10dp" | 
| 14                   android:paddingRight="10dp" | 14                   android:paddingRight="10dp" | 
| 15                   android:layout_margin="0dp" | 15                   android:layout_margin="0dp" | 
| 16                   android:orientation="vertical" | 16                   android:orientation="vertical" | 
| 17                   android:background="#ffffff" > | 17                   android:background="#ffffff" > | 
| 18     </LinearLayout> | 18     </LinearLayout> | 
| 19     <!-- Confirmation button --> | 19     <!-- Confirmation button --> | 
| 20     <Button android:id="@+id/abb_frp_button" | 20     <Button android:id="@+id/abb_frp_button" | 
| 21             android:tag="ttf_opensans_semibold" | 21             android:tag="ttf_opensans_semibold" | 
| 22             android:layout_width="match_parent" | 22             android:layout_width="match_parent" | 
| 23             android:layout_height="wrap_content" | 23             android:layout_height="wrap_content" | 
| 24             android:gravity="center" | 24             android:gravity="center" | 
| 25             android:text="filler" | 25             android:text="filler" | 
| 26             android:background="@drawable/abb_frp_button" | 26             android:background="@drawable/abb_start_pane_button" | 
| 27             android:drawableRight="@drawable/abb_right_arrow" | 27             android:drawableRight="@drawable/abb_right_arrow" | 
| 28             android:textColor="#f8f8f8" | 28             android:textColor="#f8f8f8" | 
| 29             android:textSize="24sp" | 29             android:textSize="24sp" | 
| 30             android:layout_centerInParent="true" /> | 30             android:layout_centerInParent="true" /> | 
| 31 </LinearLayout> | 31 </LinearLayout> | 
| 32 | 32 | 
| LEFT | RIGHT | 
|---|