Different behaviors in various platform

I just porting the sample game FruitAttack in SDK cocos2d-html5 2.2.2 to cocos2d-js 3.0 the web version is running well in browser but got some problem on android platform.
1.It always showing a white block on right top of game girds:


2.After times up, the finish animation not pops up, and restart button also not shown there.

        var itemRestart =cc.MenuItemImage.create(
            "resultLayer/btnResultRestart.png",
            "resultLayer/btnResultRestartDown.png",
            this.menuCallBack,
            this);
        itemRestart.setTag(eGameResultMenuTag.Restart);
        itemRestart.setPosition(160, 160);

Other functions such are works well, such as destroy animations, time scroll, touch event listener etc.
Does anyone else faced same problem before ?