안드로이드 기반 자체는 사이즈가 각각 다른데...
어떤 기준으로 레이아웃을 잡아야 할지 감이 안잡히네요 ㅠㅠ

레이아웃 구성하는데 에뮬레이터 화면을 봤을때
4개는 동일한 사이즈를 보이지만, 마지막 5번째 버튼은 한개가 짤리는 경우가 있더라고요 !!
이런경우에는 어떤 방법을 사용해야 할지 감이 안잡히네요 ~ 방법줌 부탁드리겠습니다.
수고하세요 ~  

   <LinearLayout
  android:layout_height="100px"
  android:layout_width="fill_parent"
  android:orientation="horizontal"
  android:gravity="bottom"
  >
  <ImageButton
  android:layout_height="wrap_content"
  android:layout_width="wrap_content"
  android:background="@drawable/btn_1"
  android:id="@+id/new1"
  />
  <ImageButton
  android:layout_height="wrap_content"
  android:layout_width="wrap_content"
  android:background="@drawable/btn_2"
  android:id="@+id/new2"
  />
  <ImageButton
  android:layout_height="wrap_content"
  android:layout_width="wrap_content"
  android:background="@drawable/btn_3"
  android:id="@+id/new3"
  />
  <ImageButton
  android:layout_height="wrap_content"
  android:layout_width="wrap_content"
  android:background="@drawable/btn_4"
  android:id="@+id/new4"
  />
  <ImageButton
  android:layout_height="wrap_content"
  android:layout_width="wrap_content"
  android:background="@drawable/btn_5"
  android:id="@+id/new5"
  />
  </LinearLayout>