You can call onClick in certain views if that is good for you.
View v;// or any of your view that extends View(ImageView, TextView etc...) v.performClick();//API 1 //you can use this with longClick aswell v.callOnClick();//API 15 //see documentation for these methods
Sipka source share