Merge pull request #1406 from abcdeiko/actionmenu_clear_fix

Fix clearItemsMethod at ActionBarMenu
This commit is contained in:
DrKLO 2016-04-25 11:39:13 +03:00
commit fe9e23eccf
1 changed files with 2 additions and 2 deletions

View File

@ -112,8 +112,8 @@ public class ActionBarMenu extends LinearLayout {
}
public void clearItems() {
for (int a = 0; a < getChildCount(); a++) {
View view = getChildAt(a);
while(getChildCount() > 0) {
View view = getChildAt(0);
removeView(view);
}
}