What is ActionBarSherlock size in pixels please ? Specifically the height, I need to design a background and I need this dimension in pixels.
And I have already searched and all I found was sizes in dp.
What is ActionBarSherlock size in pixels please ? Specifically the height, I need to design a background and I need this dimension in pixels.
And I have already searched and all I found was sizes in dp.
Obviously,
ActionBar actionBar = getSupportActionBar();
int height = actionBar.getHeight();
you can convert dp into pixels and use in your project . I hope it will solve your poblem.. ;)