wxr
2023-08-24 e8147ceaf39253db2c9e6cfe023b505f71ec7ba5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
using System;
using Shared;
using HDL_ON.UI.CSS;
using System.Net;
using System.Text;
using HDL_ON.DAL.Server;
using System.Threading.Tasks;
 
namespace HDL_ON.UI
{
    /// <summary>
    /// 关于页面
    /// </summary>
    public class AboutOnPage : FrameLayout
    {
        /// <summary>
        /// 
        /// </summary>
        FrameLayout bodyView;
 
        /// <summary>
        /// 新版本的版本号,查询到新版本才赋值
        /// </summary>
        string newAppVersion;
        /// <summary>
        /// 新版本的下载地址
        /// iOS 默认为苹果商店地址
        /// Android 云端返回地址
        /// </summary>
        string newAppVersionUrl = "";
 
        /// <summary>
        /// 
        /// </summary>
        public AboutOnPage()
        {
            bodyView = this;
        }
 
        /// <summary>
        /// 
        /// </summary>
        public void LoadPage()
        {
            new TopViewDiv(bodyView, Language.StringByID(StringId.About)).LoadTopView();
            this.BackgroundColor = CSS_Color.MainBackgroundColor;
 
            Button btnOnIcon = new Button()
            {
                Gravity = Gravity.CenterHorizontal,
                Y = Application.GetRealWidth(106),
                Width = Application.GetRealWidth(58),
                Height = Application.GetRealWidth(58),
                UnSelectedImagePath = "OnIcon.png",
            };
            bodyView.AddChidren(btnOnIcon);
 
            Button btnOnTitle = new Button()
            {
                //Gravity = Gravity.CenterHorizontal,
                Y = Application.GetRealWidth(184),
                Height = Application.GetRealWidth(28),
                TextAlignment = TextAlignment.Center,
                Text = "荣悦智能",
                TextColor = CSS_Color.FirstLevelTitleColor,
                TextSize = CSS_FontSize.EmphasisFontSize_Secondary,
                IsBold = true,
            };
            bodyView.AddChidren(btnOnTitle);
 
 
            Button btnOnVersion = new Button()
            {
                Y = btnOnTitle.Bottom,
                Height = Application.GetRealWidth(25),
                TextAlignment = TextAlignment.Center,
                TextColor = CSS_Color.TextualColor,
                TextSize = CSS_FontSize.PromptFontSize_FirstLevel,
                Text = Language.StringByID(StringId.VersionNumber) + " " + MainPage.VersionString,
            };
            bodyView.AddChidren(btnOnVersion);
            if(HttpUtil.GlobalRequestHttpsHost == "https://test-gz.hdlcontrol.com")
            {
                btnOnVersion.Text += "(Test Server)";
            }
 
 
            var lineView = new FrameLayout()
            {
                Y = Application.GetRealHeight(281),
                Height = Application.GetRealHeight(1),
                BackgroundColor = CSS_Color.DividingLineColor,
            };
            bodyView.AddChidren(lineView);
 
 
            #region 软件服务协议
            var serviceAgreementView = new ListCellView()
            {
                Y = lineView.Bottom,
            };
            bodyView.AddChidren(serviceAgreementView);
            serviceAgreementView.BtnTilte.TextID = StringId.UserAgreement;
            Action serviceAgreementAction = () => {
                string url = Constant.URL_USERAGREEMENT;
                string titleStr = Language.StringByID(StringId.UserAgreement);
                new WebViewDialog().LoadPageWithdrawalConsent(titleStr, url);
            };
            serviceAgreementView.GoAction = serviceAgreementAction;
            #endregion
 
            #region 用户信息保护协议
            var privacyPolicyView = new ListCellView()
            {
                Y = serviceAgreementView.Bottom,
            };
            bodyView.AddChidren(privacyPolicyView);
            privacyPolicyView.BtnTilte.TextID = StringId.PrivacyPolicy;
            Action privacyPolicyAction = () => {
                string url = Constant.URL_PRIVACYPOLICY;
                string titleStr = Language.StringByID(StringId.PrivacyPolicy);
                new WebViewDialog().LoadPageWithdrawalConsent(titleStr, url);
            };
            #endregion
            privacyPolicyView.GoAction = privacyPolicyAction;
 
 
        }
 
 
        /// <summary>
        /// 判断是否需要调整新版本下载地址
        /// </summary>
        void OpenUrl()
        {
            if (!string.IsNullOrEmpty(newAppVersion)&& newAppVersion.Contains("http"))
            {
                HDLUtils.OpenUrl(newAppVersionUrl);
            }
            else
            {
                Utlis.ShowTip(Language.StringByID(StringId.IsLatestVersion));
            }
        }
 
    }
}