<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/nomal_login_bg"
android:gravity="top"
tools:context=".NomalLoginActivity" >
<Button
android:id="@+id/login_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/checkBox1"
android:layout_centerHorizontal="true"
android:layout_marginTop="25dp"
android:background="@drawable/login_button"
android:padding="0dp"
android:text="@string/login_button"
android:onClick="onClick"
/>
<EditText
android:id="@+id/ID"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/PW"
android:layout_alignRight="@+id/login_button"
android:layout_marginBottom="49dp"
android:background="@drawable/edit"
android:ems="10"
android:inputType="phone"
android:textColorLink="@android:color/black" >
<requestFocus />
</EditText>
<EditText
android:id="@+id/PW"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/checkBox1"
android:layout_alignParentBottom="true"
android:layout_marginBottom="238dp"
android:background="@drawable/edit"
android:ems="10"
android:inputType="textPassword"
android:textColorLink="@android:color/black" />
<CheckBox
android:id="@+id/checkBox1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/ID"
android:layout_alignTop="@+id/PW"
android:layout_marginTop="78dp"
android:background="@drawable/chk"
android:button="@drawable/check_box_sel" />
</RelativeLayout>

레이아웃을 설계하는데 기기마다 다 다르네요....
여러 책을 읽어 봤지만 도무지 감이 안 잡힙니다.
감을 잡을 만한 자료좀 추천해주세요! ㅠㅠ