balysv / material-ripple

Android L Ripple effect wrapper for Views
Apache License 2.0
2.36k stars 479 forks source link

[Opinion] childView.performClick should fire regardless whether if the ripple is in an adapter or not #72

Open SomeoneIsWorking opened 7 years ago

SomeoneIsWorking commented 7 years ago
} else {
    // otherwise, just perform click on child
   childView.performClick();
}

to

}
// perform click on child
childView.performClick();

It would fire in a regular view, why not MaterialRippleLayout