Skip to content

Instantly share code, notes, and snippets.

@theSociableme
Created February 12, 2015 21:26
Show Gist options
  • Save theSociableme/5f8449ca8221041caa65 to your computer and use it in GitHub Desktop.
Save theSociableme/5f8449ca8221041caa65 to your computer and use it in GitHub Desktop.
int dp;
Resources r = getResources();
if(tabsContainerOptions != null){
int pixels = tabsContainerOptions.optInt("tabHeight");
if(pixels != null){
dp = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, pixels, r.getDisplayMetrics());
}else{
dp = (int) r.getDimension(R.dimen.tab_height);
}
} else {
dp = (int) r.getDimension(R.dimen.tab_height);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment