iv166qiang 发表于 2016-2-23 16:17:46

插件cordova-plugin-inappbrowser,不显示按钮

安卓使用了插件cordova-plugin-inappbrowser,装到手机上打开,怎么顶部是一条白条,没能显示任何按钮,但用手去触摸那些位置却有按钮的功能,但就是看不到按钮;我用的是插件说明上的代码,管理和高手们看看是怎么回事?

代码如下:

cordova.ThemeableBrowser.open('http://apache.org', '_blank', {
    statusbar: {
      color: '#ffffffff'
    },
    toolbar: {
      height: 44,
      color: '#f0f0f0ff'
    },
    title: {
      color: '#003264ff',
      showPageTitle: true
    },
    backButton: {
      image: 'back',
      imagePressed: 'back_pressed',
      align: 'left',
      event: 'backPressed'
    },
    forwardButton: {
      image: 'forward',
      imagePressed: 'forward_pressed',
      align: 'left',
      event: 'forwardPressed'
    },
    closeButton: {
      image: 'close',
      imagePressed: 'close_pressed',
      align: 'left',
      event: 'closePressed'
    },
    customButtons: [
      {
            image: 'share',
            imagePressed: 'share_pressed',
            align: 'right',
            event: 'sharePressed'
      }
    ],
    menu: {
      image: 'menu',
      imagePressed: 'menu_pressed',
      title: 'Test',
      cancel: 'Cancel',
      align: 'right',
      items: [
            {
                event: 'helloPressed',
                label: 'Hello World!'
            },
            {
                event: 'testPressed',
                label: 'Test!'
            }
      ]
    },
    backButtonCanClose: true
}).addEventListener('backPressed', function(e) {
    alert('back pressed');
}).addEventListener('helloPressed', function(e) {
    alert('hello pressed');
}).addEventListener('sharePressed', function(e) {
    alert(e.url);
}).addEventListener(cordova.ThemeableBrowser.EVT_ERR, function(e) {
    console.error(e.message);
}).addEventListener(cordova.ThemeableBrowser.EVT_WRN, function(e) {
    console.log(e.message);
});

admin 发表于 2016-2-23 20:15:04

http://www.phonegap100.com/plugininfo_42.html   用这个插件试试

这个插件比较灵活一些

iv166qiang 发表于 2016-2-23 22:32:06

admin 发表于 2016-2-23 20:15
http://www.phonegap100.com/plugininfo_42.html   用这个插件试试

这个插件比较灵活一些 ...

哦,插件名字写错了,就是你这里的cordova-plugin-themeablebrowser插件,装到安卓手机上,只能显示主题名,不能显示按钮,但触摸相应位置,有按键的功能。

ionicwang 发表于 2016-2-25 10:44:45

iv166qiang 发表于 2016-2-23 22:32
哦,插件名字写错了,就是你这里的cordova-plugin-themeablebrowser插件,装到安卓手机上,只能显示主题 ...
树根老大教程看看你就知道怎么回事了,

下面是ionic-native-transitions使用源码 课件   视频下载地址:

http://pan.baidu.com/s/1kTUFowv

zgq_love 发表于 2016-9-14 14:51:47

弄好使没?我也碰到这种问题了。。。希望大侠分享一下
页: [1]
查看完整版本: 插件cordova-plugin-inappbrowser,不显示按钮