Is it possible to draw an image over another view (like a button) and still have the view work normally? The user would still be able to click on the button even though there is another image on top of it. I want to draw some mostly transparent pngs over my layout for lighting effects, but I want to make sure everything will still work correctly.
Asked
Active
Viewed 1,805 times
1 Answers
1
Try using a RelativeLayout
with an ImageView
on top of the widget(s) in your app. See this question for a quick example.