android: fix list item cannot response click action
This commit is contained in:
parent
f448692896
commit
af77a0e98e
@ -1207,7 +1207,9 @@ public abstract class ViewNode<T extends View> extends DoricContextHolder {
|
|||||||
setRotationX(0);
|
setRotationX(0);
|
||||||
setRotationY(0);
|
setRotationY(0);
|
||||||
mView.setPadding(0, 0, 0, 0);
|
mView.setPadding(0, 0, 0, 0);
|
||||||
|
if (mView.hasOnClickListeners()) {
|
||||||
mView.setOnClickListener(null);
|
mView.setOnClickListener(null);
|
||||||
|
}
|
||||||
DoricLayer doricLayer = this.doricLayer;
|
DoricLayer doricLayer = this.doricLayer;
|
||||||
if (mView instanceof DoricLayer) {
|
if (mView instanceof DoricLayer) {
|
||||||
doricLayer = (DoricLayer) mView;
|
doricLayer = (DoricLayer) mView;
|
||||||
|
Reference in New Issue
Block a user