My ion-item doesn't show click effect when i clicked in android

So as the title say.

my ion-item doesn’t show click effect when i clicked

this is the part of the code

<div class="list" ng-show="!onSearch">
    <div ng-repeat="category in categoryList">
        <div class="item item-divider">
            {{category.title}}
        </div>
        <ion-item ng-repeat="subcategories in category.subcategories">
            {{subcategories.title}}
        </ion-item>
    </div>
</div>

Now i know what the problem

The “Activated” class get delayed when added to ion-item

so, can someone help how to make it so “Activated” class not delayed when added