I just updated my Android app from level 13 to 14 using simulator 4.0.
Can anyone who uses level 14 api confirm that there is a problem with
@Override
public boolean onMenuItemSelected(int featureId, MenuItem item)
{
switch(item.getItemId())
{
case android.R.id.home:
...
}
function? If I compile with a level 13 api, I can click the main action icon (on the left) and go to this method in the case of r.id.home, but with the upgrade to level 14 api this function is not called and it looks like the icon is not clickable : (
I'm just wondering if this is a mistake in this newly released api ...
source
share