I have an ActionBarSherlock with one menu item in my bar. When I'm call
View item = findViewById(R.id.my_item);
in activity's button onClick
all works fine as expected.
But when I try to do this in onCreate
or onResume
or even in onPostResume
it is always null
. I also tryed do this in onCreateOptionsMenu(Menu menu)
after inflating my menu from resource, but without any succes.
Therefore I can't understand when actionbar items created and how to catch this moment?