Skip to content

Commit

Permalink
Proxy action mode tag getter and setter. Closes JakeWharton#437.
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWharton committed Apr 14, 2012
1 parent 386da8e commit a9f71bc
Showing 1 changed file with 10 additions and 0 deletions.
Expand Up @@ -314,5 +314,15 @@ public View getCustomView() {
public MenuInflater getMenuInflater() {
return ActionBarSherlockNative.this.getMenuInflater();
}

@Override
public void setTag(Object tag) {
mActionMode.setTag(tag);
}

@Override
public Object getTag() {
return mActionMode.getTag();
}
}
}

0 comments on commit a9f71bc

Please sign in to comment.