using System;
using Shared.Common;
namespace Shared.Phone.UserCenter.Abount
{
public class SLAForm : EditorCommonForm
{
///
/// 画面显示(底层会固定调用此方法,借以完成画面创建)
///
public void ShowForm()
{
//设置标题信息
base.SetTitleText(Language.StringByID(R.MyInternationalizationString.SLA));
//初始化中部控件
this.InitMiddleFrame();
}
///
/// 初始化中部控件
///
private void InitMiddleFrame()
{
var btnControl = new WebView();
btnControl.Width = bodyFrameLayout.Width;
btnControl.Height = bodyFrameLayout.Height;
bodyFrameLayout.AddChidren(btnControl);
//加载网址
btnControl.LoadRequest("https://developer.hdlcontrol.com/HDLEvoyoPrivacyPolicy.html");
}
}
}