So I\'m new to android development...How can I create an image that acts like button, so when I press that image, image starts a specific activity. So I want this to show as ima
It's an overcomplication to use "setOnClickListener()". Instead, use the 'onClick' property in XML:
public void yourCallback(View view) { ... }