本文整理汇总了TypeScript中ionic-native.StatusBar.styleBlackTranslucent方法的典型用法代码示例。如果您正苦于以下问题:TypeScript StatusBar.styleBlackTranslucent方法的具体用法?TypeScript StatusBar.styleBlackTranslucent怎么用?TypeScript StatusBar.styleBlackTranslucent使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ionic-native.StatusBar
的用法示例。
在下文中一共展示了StatusBar.styleBlackTranslucent方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: initializeApp
initializeApp(global, alertCtrl, navCtrl) {
let retryCount = 0;
StatusBar.styleBlackTranslucent();
global.socket = io('https://io-test.remaxthailand.co.th');
let storage = new Storage(LocalStorage);
storage.get('langCode').then((langCode) => {
if (langCode == undefined)
storage.set('langCode', 'th');
else
global.langCode = langCode;
});
storage.get('message').then((message) => {
if (message != null || message != undefined)
global.message = JSON.parse(message);
});
storage.get('memberInfo').then((memberInfo) => {
if (memberInfo != null && memberInfo != undefined && memberInfo != ''){
global.member = JSON.parse(memberInfo);
if( global.member.type != 'guest' ){
storage.get('token').then((token) => {
this.global.socket.emit('api', {
token: token,
module: 'member',
action: 'profile'
});
});
}
}
else {
global.member = {
id: '0', type: 'guest', typeMessage: 'roleGuest', picture: 'build/img/remax.png',
name: 'Remax Thailand', shopName: ''
};
storage.set('memberInfo', global.member);
}
});
/*LocalNotifications.schedule({
id: 1,
title: "หัวข้อหลัก",
text: "Remax Thailand",
//sound: isAndroid? 'file://sound.mp3': 'file://beep.caf',
data: { meetingId:"123#fg8" },
icon: 'file://icon.png'
});
LocalNotifications.on("click", function (notification) {
let data = notification.data;
alert(data.id);
alert(data.meetingId);
alert(data['meetingId']);
alert(data);
});*/
/*var push = Push.init({
android: {
senderID: "3066538051"
},
ios: {
alert: "true",
badge: true,
sound: 'false'
},
windows: {}
});
push.on('registration', (data) => {
console.log(data.registrationId);
global.deviceToken = data.registrationId.toString();
//alert(data.registrationId.toString());
});
push.on('notification', (data) => {
console.log(data);
alert("Hi, Am a push notification");
});
push.on('error', (e) => {
console.log(e.message);
alert(e.message);
});*/
storage.get('token').then((token) => {
if (token != undefined && token.trim() != '') {
global.socket.emit('access', { token: token });
}
else {
global.socket.emit('access', { token: '' });
}
});
/*## ข้อมูล Token ##*/
global.socket.on('access', function (data) {
if (data.success) {
storage.set('token', data.token);
global.socket.emit('api', {
token: data.token,
//.........这里部分代码省略.........