0

使用 trigger.io 构建 HTML5 应用程序。

使用 topbar 和 tabbar 原生 UI 功能并遇到以下问题。

顶栏

对于android:标题图像缩小了很多,变成了一个小图标。而对于 IOS 工作正常。我正在使用 android 4.1.2 Galaxt note 2 来测试 apk 文件。

标题图像是否有最佳图像尺寸以使其不会缩小?

标签栏

无法在 Android 和 IOS 中添加 Tabbar 按钮。下面是我正在使用的确切 js 代码

forge.tabbar.addButton({
  icon: "img/IMG_0045.png",
  text: "First",
  index: 0
}, function (button) {
  button.setActive();
  button.onPressed.addListener(function () {
    alert("First");
  });
});

forge.tabbar.addButton({
  icon: "img/IMG_0047.png",
  text: "Second",
  index: 1
}, function (button) {
  button.onPressed.addListener(function () {
    alert("Second");
  });
});

请指教!!

4

1 回答 1

0

对于顶栏,推荐的图像尺寸为 100PX 高度,如文档样式部分所述

https://trigger.io/docs/current/api/modules/topbar.html

它一直在样式指南下该页面的底部

至于标签栏中的按钮,你看到的是没有按钮的标签栏还是栏?

于 2013-07-11T18:08:13.627 回答