Titanium - Android - 使用滚动视图

时间:2012-10-16 10:39:19

标签: android titanium

我正在尝试使用Titanium Appcelerator准备在Android和iOS上运行的移动应用 在其中一个视图中,我将向服务器发送请求,获取响应,并在解析之后,我将创建一个包含内部视图的滚动视图并相应地填充数据。该应用程序在iPhone上运行良好。但是在Android中,它的工作效率并不高。除非直到我将控件添加到Windows,否则它们不会在Android中显示 我想知道我是否要设置任何东西在android中正常工作。
以下代码用于添加子视图滚动视图:

var xPos = 0;
for (var i = 0; i < cityCodes.length; i++) 
{
    xPos = i*320;
    var cityImg = require('screens/views').cityDataView(xPos, cityClicked,
        cityCodes.item(i).text,
        cityNames.item(i).text,
        cityExportQuantities.item(i).text,
        exportPercentages.item(i).text,
        populationCount.item(i).text,
        popultionPercentages.item(i).text,
        rates.item(i).text
    );
    scrlView.add(cityImg);
}

我正在创建滚动视图,如下所示:

scrlView = Titanium.UI.createScrollView({
    contentWidth:'auto', 
    contentHeight:'auto', 
    top:'40%', 
    height:'155dp',
    showVerticalScrollIndicator:true, 
    showHorizontalScrollIndicator:false 
});

我正在创建城市数据视图,如下所示:

cityDataView: function(xPos, showCityDetails,  cityCode, cityName, exportQuantity, exportPercent, popCount, popPercent, rate)
{
    var tempLabel = function(topPos,txt){
        // Ti.API.log(topPos);
        var custLabel = Ti.UI.createLabel({         
            color:'#000',
        text:txt,
        right:'55%',
        top:topPos,
        font:{
                fontSize:14,
                fontFamily:'GE SS Text Light'
        },
        textAlign:Titanium.UI.TEXT_ALIGNMENT_RIGHT,
        width:'auto'
        });
        return custLabel;
    };
    var cityImg = Ti.UI.createImageView({
        left:xPos,
    height : '155dp',
    width : '100%',
    image : '/images/citydetails.png'
    });
    cityImg.addEventListener('singletap', function(){
        Ti.API.log(cityCode);
     showCityDetails(cityCode);
    });
    var cityNameLbl = Ti.UI.createLabel({
    color:'#ffffff',
    text:cityName,
    height:'15dp',
    top:'6%',
    font:{
            fontSize:14,
            fontFamily:'GE SS Text Light'
    },
    textAlign:Titanium.UI.TEXT_ALIGNMENT_RIGHT,
    width:'auto'
    });
    cityImg.add(cityNameLbl);
    var exportQtyLbl = tempLabel('19%',exportQuantity);
    cityImg.add(exportQtyLbl);

    var overallProd = tempLabel('35%',exportPercent);
    cityImg.add(overallProd);

    var populationCount = tempLabel('53%',popCount);
    cityImg.add(populationCount);

    var populationPercent = tempLabel('69%',popPercent);
    cityImg.add(populationPercent);

    var rateText = tempLabel('85%',rate);
    cityImg.add(rateText);

    // var totalExportText = tempLabel('95%',totalExport);
    // cityImg.add(totalExportText);

    return cityImg; 
}

0 个答案:

没有答案