Skip to content

Instantly share code, notes, and snippets.

@typeoneerror
Created January 28, 2011 08:14
Show Gist options
  • Save typeoneerror/799989 to your computer and use it in GitHub Desktop.
Save typeoneerror/799989 to your computer and use it in GitHub Desktop.
paddingTop
private View buildIndicator(int imageResource, int stringResource)
{
final Button indicator = (Button)getLayoutInflater().inflate(R.layout.navigation_item, getTabWidget(), false);
indicator.setCompoundDrawables(null, resources.getDrawable(imageResource), null, null); // LTRB
indicator.setText(resources.getString(stringResource));
return indicator;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment