요새 안드로이드에 재미를 가지고 달려들기 시작한 새내긴데요...

이것저것 건들여보고 하면서 버튼 배치나 이런것들은 하는데 문제가 생겼어요.

layout에서 main.xml을 읽어 들이면 밑에 탭에서 자기가 xml로 만든 폼을 미리 볼수 있잖아요.

질문1. 거기서 넥서스원으로 디바이스를 선택하든 어떤 기종을 선택하던 실제 dalvic으로 돌린거랑 틀려요. 어떻게 세팅을 해야하죠
          이왕이면 갤럭시s로 세팅해두고 싶은데 dpi x축 dpi y축 값을 둘다 요구하네요. ㅠㅠ

질문2. avd세팅시에 갤럭시s로 초첨을 맞추고 4인치에 233dpi라는 소릴 들어서 그렇게 했는데 가상애뮬로 돌릴때 컴퓨터 모니터 화면을
            넘어가는 크기로 나오는데 이거 왜이러죠. wvga800에 sd용량 32로 맞추고 start눌렀을때 나오는 세팅값 4인치 233dpi로 맞췄어요.
             왜그런지 오늘 날밤 샜어요. api공부가 먼쳐라지만 오기가 생겨서 avd만 잡고 날밤 샜네요. 고수님들 왜그런지 좀 알려주세요.

질문3. 예를들어main.xml에서 <button>을 만들고 거기에 android:text="@string/kkk"이런식으로 하고  value안에 있는 resources xml에서
           <string name="kkk">바보다바보다<"/string>이런식으로 작성했을때 바보다 바보다라는 글자가 버튼안에서 이쁘게 가운데 줄맞춰서
           출력이 되는게 아니라 layout미리보기 창에서 보면 뒤로 밀려보이는데 왜그럴까요 ㅠㅠㅠ 사진 첨부합니다 avd뻑난거 부터 ㅠㅠ


제발 부탁 드려요 알려주세요 ㅠㅠㅠ 새내기의 꿈을 살려주세요 ㅠㅠㅠ


소스 첨부합니다. 버튼 맨마지막껀. 필셀로 안하고 일부로 wrap_content로 해봤는데 아니나 다를까 뻑난것처럼 나오네요 ㅠㅠㅠㅠㅠ
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">


<TextView
 android:layout_width="fill_parent"
 android:layout_height="wrap_content"
 android:layout_marginLeft="15px"
 android:text="@string/subject"
 />

<ImageView 
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="40px"
    android:layout_marginLeft="30px"
    android:layout_marginBottom="5px"
    android:layout_marginRight="30px"
    android:src="@drawable/gumsung"
    />
<Button
 android:id="@+id/button_gum"
 android:layout_width="200px"
 android:layout_height="55px"
 android:layout_toRightOf="@id/button1"
 android:layout_marginTop="60px"
 android:text="@string/gum"    />
 
<ImageView 
    android:id="@+id/button2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginBottom="5px"
    android:layout_marginLeft="30px"
    android:layout_marginRight="30px"
    android:layout_below="@id/button1"
    android:src="@drawable/madosung"/>
<Button
 android:id="@+id/button_mado"
 android:layout_width="200px"
 android:layout_height="55px"
 android:layout_toRightOf="@id/button2"
 android:layout_marginTop="165px"
 android:text="@string/mado"    />   
<ImageView 
    android:id="@+id/button3"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginLeft="30px"
    android:layout_marginRight="30px"
    android:layout_below="@id/button2"
    android:src="@drawable/sajesung"/>
<Button
 android:id="@+id/button_saje"
 android:layout_width="wrap_content"  // 여기는 일부로 바꿔봤어요.. 위에껀 전부 픽셀로 줘보고
 android:layout_height="wrap_content" // layout 미리보기로 보니까 완전 짜부러 져서 나오네요.
 android:layout_toRightOf="@id/button3"
 android:layout_marginTop="270px"
 android:text="@string/saje"    />


avd갤럭시s용으로 스펙좀 알려주세요 ㅠㅠ