Matt
Matt

Reputation: 3912

Remove white background from image to blend with parent background

See below screenshot:

enter image description here

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

Answers (1)

user3137768
user3137768

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

Related Questions