mmDialog icon indicating copy to clipboard operation
mmDialog copied to clipboard

集成自定义的AlertDialog,loading和toast的弹窗。使用简单方便

Results 1 mmDialog issues
Sort by recently updated
recently updated
newest added

把webview,setBuiltInZoomControls 对外暴露吧,或者可以重写webview. 你现在的代码写的有bug ![1111](https://user-images.githubusercontent.com/20369464/91676669-2b649580-eb73-11ea-9876-8ae7691231f3.png) WebView中包含一个ZoomButtonsController,当使用webVeiw.getSettings().setBuiltInZoomControls(true);启用后,用户一旦触摸屏幕,就会出现缩放控制图标。如果图标自动消失前执行了webVeiw.destroy();,就会报上面的这些异常。 解决方法: 1、webVeiw.getSettings().setBuiltInZoomControls(false); 2、在退出activity是不执行webVeiw.destroy(),或者延迟几秒,等ZoomButtonsController缩放控制图标消失了在执行webVeiw.destroy();