Smartface上有“adjustViewBounds”这样的设置吗?

时间:2015-01-26 12:30:58

标签: smartface.io

我有很多不同宽度和高度的照片。

我想设置一个列表,100%宽度和动态高度图像,但我找不到任何设置,如" adjustViewBounds"在Smartface上。

我的图片有不同的宽度,所以自动调整大小"图像大小属性"不适合我。

2 个答案:

答案 0 :(得分:0)

您想将此列表用于重复行或用于什么?动态地,您可以设置任何页面中的图像高度和图像宽度。

答案 1 :(得分:0)

如果您使用repeatbox并想要更改与图像大小相关的rowHeights,则可以对repeatBox使用customRowHeight方法。

喜欢;

var rBox = new SMF.UI.Repeatbox();
 // adding items to repeatbox
 /* If this property is assigned to a function, this function will be called. This function results will override any height value previously given
 * @param {number} maxRows  Required. Maximum value index of rows to be added to repeatbox
 * @param {number} minRows  Optional. Minimum value index of rows to be added to repeatbox
 * @return {object} A custom object with two key properties (activeItem , inactiveitem) which values are number arrays
  */
 rbox.customRowHeight = function (maxRows, minRows) {
    var i;
    var result = {
        activeItem : [],
        item: []
    };
    for (i = minRows or  0; //Default value if minRows is not provided
        i < maxRows; i++) {
        switch (i) {
        case 0:
            result.activeItem[i] = result.item[i] = "50dp";
            break;
        case (i <= 10 and i > 0):
            result.activeItem[i] = "40dp";
            result.itemtem[i] = "35dp";
            break;
        default:
            result.activeItem[i] = result.item[i] = 30;
        }
    }
    return result;
 };

除此之外,您还可以创建ScrollView,并可以动态填充图像。您可以将其布局设置为线性,而不是将ScrollView的autoSize功能设置为true。通过这种方式,您可以为ScrollView设置动态高度,并且可以逐行将它们添加到scrollView中。

有关布局的详细信息:http://www.smartface.io/developer/guides/controls/layouts/