레이아웃에 EditText 창 두개를 만들고 실행했는데 두개 외곽 테두리창이 틀리네요 하나는 두껍고 하나는 거의 테두리가없구요.

 

레이아웃에서 테두리 설정하는게있나요?

  <RelativeLayout
  android:layout_marginTop="5dip"
  android:layout_marginBottom="5dip"
  android:layout_marginLeft="20dip"
  android:layout_marginRight="20dip"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content">

         android:id="@+id/EditText1"
         android:layout_width="fill_parent"
         android:layout_height="wrap_content"
         android:background="@android:drawable/editbox_background"
         android:gravity="center_horizontal">

 

  <RelativeLayout
  android:layout_width="fill_parent"
  android:layout_height="300dip">
       <RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">

               android:id="@+id/EditText2"
               android:layout_width="fill_parent"
               android:layout_height="wrap_content"
               android:background="@android:drawable/editbox_background"
               android:gravity="center_horizontal">

 

이렇게 두개 설정을 했는데 테두리가 다르게 나옵니다. 이유가 뭔가요???