이미지버튼 만들었는데요.
분명히 포토샵으로 '(버튼)이미지 배경' 지웠구요.
실행했을때,
저 버튼만 나타나야되는데,
실해해보니 버튼 뒤쪽에 네모 모양으로 배경처럼 생겨버리네요.
없앨수있나요??

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:gravity="center"
 xmlns:android="http://schemas.android.com/apk/res/android"
 
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
    <ImageButton
     android:id="@+id/imgBtn"
     android:src="@drawable/image"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">
    </ImageButton>
</LinearLayout>

이 소스입니다.