Content Descriptions not showing up

Author: jmieleiiiCreated Oct 31, 2013Updated Dec 17, 2014

I'm trying to add content descriptions to a few tabs but they aren't showing up once the application is run.

In the activity:

java
TabsAdapter tabsAdapter = new TabsAdapter(this, viewPager);

ActionBar.Tab test = getSupportActionBar().newTab();
test.setContentDescription("test");
test.setText("Test");
tabsAdapter.addTab(test, TestFragment.class, null);

The text changes and appears correctly, but the content description does not. Any ideas?

Source: JakeWharton/ActionBarSherlock