App-Android(使用App+htnl5框架,解决消息推送兼容SignalR问题)
loulijun2021
2022-10-22 40711118c33369ccad7ceda0fdd729bd9f117f65
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8" />
        <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover" />
        <meta name="HandheldFriendly" content="true" />
        <meta name="MobileOptimized" content="320" />
        <title>Hello H5+</title>
        <script type="text/javascript" src="../js/common.js"></script>
        <script type="text/javascript">
            var ws = null,
                wo = null;
            var scan = null;
            // H5 plus事件处理
            function plusReady() {
                // 获取窗口对象
                ws = plus.webview.currentWebview();
                nv = ws.getTitleNView();
                wo = ws.opener();
                // 开始扫描
                ws.addEventListener('show', function() {
                    scan = new plus.barcode.Barcode('bcid', [plus.barcode.QR, plus.barcode.EAN8, plus.barcode.EAN13], {
                        frameColor: '#00FF00',
                        scanbarColor: '#00FF00'
                    });
                    scan.onmarked = onmarked;
                    scan.start({
                        conserve: true,
                        filename: '_doc/barcode/'
                    });
                    createSubview();
                }, false);
                // 显示页面并关闭等待框
                ws.show('pop-in');
            }
            document.addEventListener('plusready', plusReady, false);
 
            // 二维码扫描成功
            function onmarked(type, result, file) {
                switch (type) {
                    case plus.barcode.QR:
                        type = 'QR';
                        break;
                    case plus.barcode.EAN13:
                        type = 'EAN13';
                        break;
                    case plus.barcode.EAN8:
                        type = 'EAN8';
                        break;
                    default:
                        type = '其它' + type;
                        break;
                }
                result = result.replace(/\r\n/g, '');
                wo.evalJS("scaned('" + type + "','" + result + "','" + file + "');");
                back();
            }
            // 创建子窗口
            var view = null;
 
            function createSubview() {
                view = new plus.nativeObj.View('nbutton', {
                    bottom: '20px',
                    left: '30%',
                    width: '40%',
                    height: '44px'
                }, [{
                    tag: 'rect',
                    id: 'rect',
                    rectStyles: {
                        radius: '8px',
                        color: 'rgba(255,0,0,0.8)'
                    }
                }, {
                    tag: 'font',
                    id: 'text',
                    text: '暂 停',
                    textStyles: {
                        color: '#FFFFFF'
                    }
                }]);
                // 处理事件
                view.addEventListener('click', function(e) {
                    switchScan();
                }, false);
                view.addEventListener('touchstart', function(e) {
                    view.drawRect({
                        radius: '8px',
                        color: 'rgba(255,0,0,0.5)'
                    }, {}, 'rect');
                }, false);
                view.addEventListener('touchend', function(e) {
                    view.drawRect({
                        radius: '8px',
                        color: 'rgba(255,0,0,0.8)'
                    }, {}, 'rect');
                }, false);
                ws.append(view);
            }
            // 开关闪光灯 
            var bFlash = false;
            var AVCaptureDevice = null;
            var Camera = null;
 
            function switchFlash() {
                bFlash = !bFlash;
                scan.setFlash(bFlash);
                ws.setStyle({
                    titleNView: {
                        buttons: [{
                            fontSrc: '_www/helloh5.ttf',
                            text: (bFlash ? '\ue400' : '\ue401'),
                            fontSize: '18px',
                            onclick: 'javascript:switchFlash()'
                        }]
                    }
                });
            }
            // 切换扫描  
            var bScan = false;
 
            function switchScan() {
                if (bScan) {
                    scan.start({
                        conserve: true,
                        filename: '_doc/barcode/'
                    });
                    view && (view.drawText('暂 停', {}, {
                        color: '#FFFFFF'
                    }, 'text'));
                } else {
                    scan.cancel();
                    view && (view.drawText('开 始', {}, {
                        color: '#FFFFFF'
                    }, 'text'));
                }
                bScan = !bScan;
            }
        </script>
        <link rel="stylesheet" href="../css/common.css" type="text/css" charset="utf-8" />
        <style type="text/css">
            #bcid {
                width: 100%;
                position: absolute;
                top: 0px;
                bottom: 0px;
                text-align: center;
            }
 
            .tip {
                color: #FFFFFF;
                font-weight: bold;
                text-shadow: 0px -1px #103E5C;
            }
        </style>
    </head>
    <body style="background-color:#000000;">
        <div id="bcid">
            <div style="height:40%"></div>
            <p class="tip">...载入中...</p>
        </div>
    </body>
</html>