I have a preference menu in my application. I am using Android 1.6. I wanted to use the static save button at the bottom of the screen.
I know how to do this with Relative Layout with android:layout_alignParentBottom="true"
<Button android:id="@id/preferencesSaveButton" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:layout_gravity="center_horizontal" android:layout_marginBottom="10dp" android:layout_marginLeft="20dp" android:layout_marginRight="20dp" android:layout_marginTop="10dp" android:padding="15dp" android:text="Save" android:textStyle="bold" />
Can we use preferences inside the Relative Layout or is there another practical method for this?
source share