要素にマージンを設定して、要素を端から離すことができます。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true" <!-- move it to the top left corner -->
android:layout_alignParentLeft="true" <!-- move it to the top left corner -->
android:layout_marginTop="10dp" <!-- move it 10dp down -->
android:layout_marginLeft="10dp" <!-- move it 10dp right -->
android:text="@string/hello_world" />
</RelativeLayout>