Its a dumb question. Prepare yourself.
My main.xml is this:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@android:color/white">
<ImageButton
android:src="@drawable/button"
android:scaleType="fitStart"
android:layout_height="fill_parent"
android:layout_width="wrap_content"
/>
</RelativeLayout>
It works. However, I actually SEE an android button with my image inside it. When you click it, the outside turns orange and everything. How do I get it so that the outside button DOESN'T appear?
Help please?