Reputation: 3912
See below screenshot:
How can I take away the white background around the green arrows? Just in case it matters, the arrows have onClickListeners
attached to them.
ImageView left, right;
left.setImageResource(R.drawable.left_arrow);
right.setImageResource(R.drawable.right_arrow);
Upvotes: 0
Views: 151
Reputation:
Actually those white spaces have nothing to do with coding or layout style. That is the original image which causes the white spaces.
You have to edit your image (using some editing tools like Photoshop or gimp) to replace those white pixels to transparent.
Upvotes: 1