• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

TypeScript ionic.Platform类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了TypeScript中ionic-framework/ionic.Platform的典型用法代码示例。如果您正苦于以下问题:TypeScript Platform类的具体用法?TypeScript Platform怎么用?TypeScript Platform使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



在下文中一共展示了Platform类的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。

示例1: constructor

 constructor(
   public platform: Platform,
   public elementRef: ElementRef,
   public renderer: Renderer) {
   this.isAndroid = platform.is('android');
   renderer.setElementAttribute(elementRef.nativeElement, 'primary', this.isAndroid ? '' : null);
 }
开发者ID:uiktiomasfeliz,项目名称:Generic,代码行数:7,代码来源:global.helpers.ts


示例2: constructor

  constructor(platform: Platform) {
    this.list = List;

    platform.ready().then(() => {
      // Do any necessary cordova or native calls here now that the platform is ready
    });
  }
开发者ID:android-sos,项目名称:ionic2-pokedex,代码行数:7,代码来源:app.ts


示例3: openMapsApp

	public openMapsApp(location: any) {
		let q;
		if (this.platform.isPlatform('android')) {
			q = 'geo:' + location;
		} else {
			q = 'maps://maps.apple.com/?q=' + location;
		}
		window.location.href = q;
	}
开发者ID:ddonny,项目名称:supermodular2,代码行数:9,代码来源:maps.service.ts


示例4: constructor

    constructor(
        platform: Platform,
        params: NavParams,
        viewCtrl: ViewController
    ) {
        this.viewCtrl = viewCtrl;
        this.params = params;
        if (platform.is('android')) {
            this.currentPlatform = 'android';
        } else {
            this.currentPlatform = 'ios';
        }

        var characters = [
            {
                name: 'Gollum',
                quote: 'Sneaky little hobbitses!',
                image: 'img/avatar-gollum.jpg',
                items: [
                    { title: 'Race', note: 'Hobbit' },
                    { title: 'Culture', note: 'River Folk' },
                    { title: 'Alter Ego', note: 'Smeagol' }
                ]
            },
            {
                name: 'Frodo',
                quote: 'Go back, Sam! I\'m going to Mordor alone!',
                image: 'img/avatar-frodo.jpg',
                items: [
                    { title: 'Race', note: 'Hobbit' },
                    { title: 'Culture', note: 'Shire Folk' },
                    { title: 'Weapon', note: 'Sting' }
                ]
            },
            {
                name: 'Samwise Gamgee',
                quote: 'What we need is a few good taters.',
                image: 'img/avatar-samwise.jpg',
                items: [
                    { title: 'Race', note: 'Hobbit' },
                    { title: 'Culture', note: 'Shire Folk' },
                    { title: 'Nickname', note: 'Sam' }
                ]
            }
        ];
        this.character = characters[this.params.get('charNum')];

  }
开发者ID:HubMahesh,项目名称:ionic-site,代码行数:48,代码来源:pages.ts


示例5: constructor

 constructor(platform: Platform) {
   this.platform = platform;
   this.isAndroid = platform.is('android');
 }
开发者ID:chrispeepata,项目名称:ionic-preview-app,代码行数:4,代码来源:pages.ts


示例6: initializeApp

 private initializeApp(): void {
   this.platform.ready().then(() => {
     // The platform is now ready. Note: if this callback fails to fire, follow
     // the Troubleshooting guide for a number of possible solutions:
     //
     // Okay, so the platform is ready and our plugins are available.
     // Here you can do any higher level native things you might need.
     //
     // First, let's hide the keyboard accessory bar (only works natively) since
     // that's a better default:
     //
     // Keyboard.setAccessoryBarVisible(false);
     //
     // For example, we might change the StatusBar color. This one below is
     // good for dark backgrounds and light text:
     // StatusBar.setStyle(StatusBar.LIGHT_CONTENT)
   });
 }
开发者ID:ciekawy,项目名称:clicker,代码行数:18,代码来源:app.ts


示例7: initializeApp

 initializeApp(): void {
   this.platform.ready().then(() => {
     
   });
 }
开发者ID:Jermorin,项目名称:caller-ionic2,代码行数:5,代码来源:app.ts


示例8: openMenu

  openMenu() {
    let buttonHandler = (index) => {
      console.log('Button clicked', index);
      if (index == 1) { return false; }
      return true;
    }

    if (this.platform.is('android')) {
      var androidSheet = {
        title: 'Albums',
        buttons: [
          { text: 'Share',
            handler: buttonHandler,
            icon: 'share'
          },
          { text: 'Play',
            handler: buttonHandler,
            icon: 'arrow-dropright-circle'
          },
          { text: 'Favorite',
            handler: buttonHandler,
            icon: 'md-heart-outline'
          },
          {
            text: 'Delete',
            style: 'destructive',
            icon: 'md-trash',
            handler: () => {
              console.log('Destructive clicked');
            }
          },
          {
            text: 'Cancel',
            style: 'cancel',
            icon: 'md-close',
            handler: () => {
              console.log('Cancel clicked');
            }
          }
        ],
      };
    }

    let actionSheet = ActionSheet.create( androidSheet || {
      buttons: [
        {
          text: 'Share',
          handler: () => {
            console.log('Share clicked');
          }
        },
        {
          text: 'Play',
          handler: () => {
            console.log('Play clicked');
          }
        },
        {
          text: 'Favorite',
          handler: () => {
            console.log('Favorite clicked');
          }
        },
        {
          text: 'Delete',
          style: 'destructive',
          handler: () => {
            console.log('Destructive clicked');
          }
        },
        {
          text: 'Cancel',
          style: 'cancel',
          handler: () => {
            console.log('Cancel clicked');
          }
        }
      ]
    });

    this.nav.present(actionSheet);
  }
开发者ID:HubMahesh,项目名称:ionic-site,代码行数:82,代码来源:pages.ts



注:本文中的ionic-framework/ionic.Platform类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
TypeScript ionic.SqlStorage类代码示例发布时间:2022-05-25
下一篇:
TypeScript ionic.NavParams类代码示例发布时间:2022-05-25
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap