| | |
| | | /// </summary> |
| | | public class WebViewDialog : Dialog |
| | | { |
| | | /// <summary> |
| | | /// bodyView |
| | | /// </summary> |
| | | FrameLayout bodyView; |
| | | |
| | | /// <summary> |
| | | /// WebViewDialog |
| | | /// </summary> |
| | | public WebViewDialog() |
| | | { |
| | | bodyView = new FrameLayout(); |
| | | } |
| | | |
| | | |
| | | /// <summary> |
| | | /// |
| | | /// 加载页面 |
| | | /// </summary> |
| | | /// <param name="titleStr"></param> |
| | | /// <param name="url"></param> |
| | |
| | | Width = bodyView.Width - Application.GetRealWidth(32) |
| | | }; |
| | | bodyView.AddChidren(webView); |
| | | //加载网址 |
| | | webView.LoadRequest(url); |
| | | try |
| | | { |
| | | if (!string.IsNullOrEmpty(url)) |
| | | { |
| | | //加载网址 |
| | | webView.LoadRequest(url); |
| | | } |
| | | } |
| | | catch |
| | | { |
| | | |
| | | } |
| | | |
| | | this.Show(); |
| | | } |
| | | } |