이클립스 Graphical Layout와 Device 에서 실행시 레이아웃이 다르게 나옵니다. 


다음은 xml 소스 입니다

layout_marginTop="50dip"  인 애들이 조금씩 차이가 나네요.

폰에서는 이클립스에서보다 약간씩 아래에 나와요.ㅠㅠ 



소스 그냥 첨부하니까 좀 지저분하네요.. 깔끔하게 넣는 법 아시는 분 있나요?



<?xml version="1.0" encoding="utf-8"?><FrameLayout  xmlns:android="http://schemas.android.com/apk/res/android"  android:orientation="vertical"  android:layout_width="fill_parent"  android:layout_height="fill_parent" >  <ImageView android:layout_width="wrap_content" android:src="@drawable/right_top_corner"android:layout_height="wrap_content" android:layout_gravity="right"></ImageView>  <ImageView android:layout_width="wrap_content" android:src="@drawable/button_menu" android:layout_height="wrap_content"android:layout_gravity="right"></ImageView>  <ImageView android:layout_width="wrap_content" android:background="@drawable/background_03"android:layout_height="wrap_content"></ImageView>  <ImageView android:layout_width="wrap_content" android:src="@drawable/envelope_down"android:layout_height="wrap_content" android:layout_marginTop="50dip"  android:layout_gravity="top"></ImageView>  <ImageView android:layout_width="wrap_content" android:src="@drawable/profile_paper_top"android:layout_height="wrap_content" android:layout_marginTop="50dip"  android:layout_gravity="top"></ImageView>  <ImageView android:layout_width="wrap_content" android:src="@drawable/envelope_up" android:layout_height="wrap_content"android:layout_marginTop="50dip" android:layout_gravity="top"></ImageView>  <ImageView android:layout_width="wrap_content" android:src="@drawable/button_next_elephant" android:layout_height="wrap_content"  android:id="@+id/button_next" android:layout_marginLeft="110dip"android:layout_marginTop="180dip" android:layout_gravity="top"></ImageView>        </FrameLayout>