When I use reflection to get method setHomeActionContentDescription
like this:
Method setHomeActionContentDescription = ActionBar.class.getDeclaredMethod(
"setHomeActionContentDescription", Integer.TYPE);
I get NoSuchMethodException:
java.lang.NoSuchMethodException: setHomeActionContentDescription [int]
Unfortunately, this method is not available before API 18. Even with the use of reflection, the method is not available. If you want use this method, you can use a workaround from SherlockNavigationDrawer library :
Source: https://github.com/nicolasjafelle/SherlockNavigationDrawer/blob/master/SherlockNavigationDrawer/src/com/sherlock/navigationdrawer/compat/SherlockActionBarDrawerToggleHoneycomb.java#L97
As you can see, if it is not possible to access methods, he try to directly get the ImageView. When you have it, you can directly do a setContentDescription or whatever you want.