I have a ListView that I want each row to fill a third of the available screen. I have the status bar visible, and then an actionBar with slidingTabs beneath. I'm doing the current calculation like this:
height = context.getResources().getDisplayMetrics().heightPixels;
if (context.getTheme().resolveAttribute(android.R.attr.actionBarSize, tv, true))
{
actionBarHeight = TypedValue.complexToDimensionPixelSize(tv.data,context.getResources().getDisplayMetrics());
Log.d("actionBarHeigth", actionBarHeight.toString());
}
And setting the views height like this:
holder.imageView.getLayoutParams().height = (height - actionBarHeight*2) / 3;
But the rows of the list are slightly too big, and i guess it's the status bar causing it. How can I add the height of it to my calculations?
You can use this code:
as described here: https://stackoverflow.com/a/3410200/1763138
Please try using this solution and tell us if it worked. ;)
The easiest way is this:
rootView is the master root layout :
Based on @rasmeta 's answer I made this code and it does the trick. My rows are now exactly a third of the available screen. Here is how to get the height of the status bar:
And the calculation of the height of each row goes like this: