I want to call an onClick(View v)
of other class from my activity\'s method onCreate()
. Is it possible?
Because I have a Popupwindow in an
Assuming that the onClick() you want to call is for a View x, use either x.performClick() or x.callOnClick(). Check their javadoc in the Developers Guide for more details.
Notice that you have to have a handle to x. If your orientation changes, you should destroy the PopupWindow and re-display it, which should work.