I can set ImageButton background transparent in layout.xml using:
layout.xml
android:background=\"@android:color/transparent\"
How I can
Try like this
ImageButton imagetrans=(ImageButton)findViewById(R.id.ImagevieID); imagetrans.setBackgroundColor(Color.TRANSPARENT);
OR
include this in your .xml file in res/layout
android:background="@android:color/transparent