1<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2                android:layout_width="match_parent"
3                android:layout_height="match_parent">
4
5    <fragment android:id="@+id/fragment_settings"
6            android:layout_width="match_parent"
7            android:layout_height="match_parent"
8            android:layout_above="@+id/cancel"
9            android:name="com.android.settings.sim.smartForwarding.MDNHandlerHeaderFragment"
10            android:layout_marginBottom="15dp" />
11
12    <Button android:id="@+id/process"
13            android:layout_width="wrap_content"
14            android:layout_height="wrap_content"
15            android:layout_alignParentBottom="true"
16            android:layout_alignParentRight="true"
17            android:layout_margin="5dip"
18            android:text="process" />
19
20    <Button android:id="@+id/cancel"
21            android:layout_width="wrap_content"
22            android:layout_height="wrap_content"
23            android:layout_alignParentBottom="true"
24            android:layout_margin="5dip"
25            android:text="cancel" />
26
27</RelativeLayout>