Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,16 @@ public void onItemClick(AdapterView<?> parent, final View view, int position, lo

View toolbar = view.findViewById(R.id.toolbar);

// Creating the expand animation for the item
ExpandAnimation expandAni = new ExpandAnimation(toolbar, 500);

// Start the animation on the toolbar
toolbar.startAnimation(expandAni);
// Start expand/collapse animation, only if animation is not already running
if (!(toolbar.getAnimation() instanceof ExpandAnimation)) {

// Creating the expand animation for the item
ExpandAnimation expandAni = new ExpandAnimation(toolbar, 500);

// Start the animation on the toolbar
toolbar.startAnimation(expandAni);

}
}
});
}
Expand Down