Merge "Empty implementations of new ActionBar methods."

This commit is contained in:
Adam Powell
2011-09-07 16:18:35 -07:00
committed by Android (Google) Code Review
2 changed files with 4 additions and 4 deletions

View File

@@ -2452,8 +2452,8 @@ package android.app {
method public abstract void setLogo(android.graphics.drawable.Drawable);
method public abstract void setNavigationMode(int);
method public abstract void setSelectedNavigationItem(int);
method public abstract void setSplitBackgroundDrawable(android.graphics.drawable.Drawable);
method public abstract void setStackedBackgroundDrawable(android.graphics.drawable.Drawable);
method public void setSplitBackgroundDrawable(android.graphics.drawable.Drawable);
method public void setStackedBackgroundDrawable(android.graphics.drawable.Drawable);
method public abstract void setSubtitle(java.lang.CharSequence);
method public abstract void setSubtitle(int);
method public abstract void setTitle(java.lang.CharSequence);

View File

@@ -417,7 +417,7 @@ public abstract class ActionBar {
*
* @param d Background drawable for the stacked row
*/
public abstract void setStackedBackgroundDrawable(Drawable d);
public void setStackedBackgroundDrawable(Drawable d) { }
/**
* Set the ActionBar's split background. This will appear in
@@ -426,7 +426,7 @@ public abstract class ActionBar {
*
* @param d Background drawable for the split bar
*/
public abstract void setSplitBackgroundDrawable(Drawable d);
public void setSplitBackgroundDrawable(Drawable d) { }
/**
* @return The current custom view.