改变钛合金进度杆的高度

时间:2014-09-24 01:33:34

标签: titanium-mobile titanium-alloy

我无法改变钛合金进度条的高度。 height属性会影响容器的大小,但不会影响条本身。无论如何我可以改变它,因为它太小了。

干杯。

XML

<Alloy>
    <Window id="win" backgroundColor="white">
        <ProgressBar id="pb" top="10" width="250" height="50" min="0" max="10" value="0" color="#fff" message="Downloading 0 of 10" />
    </Window>
</Alloy>

如果我更改高度属性,例如&#39; auto&#39;,如上所述,栏本身保持不变。只有容纳进度条的容器的高度才会改变

1 个答案:

答案 0 :(得分:0)

好的我认为您正试图改变实际酒吧本身的高度?使用height属性设置高度时,您需要更改包含标签的整个ProgressBar View的高度。

通过快速搜索,您似乎只能使用自定义Android主题来完成:

  1. Increase height of progress bar in Android
  2. Link to how to make custom Android themes in Titanium
  3. 此外,不推荐使用height = auto,您应该使用Ti.UI.SIZE或Ti.UI.FILL

    编辑:对于iOS,看起来像自定义模块是唯一的解决方案https://github.com/viezel/NappAppearance