0

我正在研究加速器钛。在我在 KitchenSink 中复制几乎相同的代码来执行 tableview 之后,当我在我的设备中显示它时,我最终得到了一个缩小的 TableView(Galaxy Nexus 上的 android 4)。缩小意味着字体和图像非常小。奇怪的是:1-它在 android 模拟器中显示得恰到好处 2-它在我的 android 设备中显示得恰到好处,但使用 KitchenSink 可能是什么问题?这是该部分的代码:

    if (Ti.Platform.name == 'android') 
{
    Titanium.UI.currentWindow.backgroundColor = '#4e5c4d';
}
else
{
    Titanium.UI.currentWindow.backgroundColor = '#aebcad';
}

// create table view data object
var data = [

    {title:'Table View (Layout 2)', hasChild:true, test:'../main_windows/profile.js'}
];


// create table view
var tableViewOptions = {
        data:data,
        style:Titanium.UI.iPhone.TableViewStyle.GROUPED,
        headerTitle:'TableView examples and test cases',
        footerTitle:"Wow. That was cool!",
        backgroundColor:'transparent',
        rowBackgroundColor:'white'

    };


var tableview = Titanium.UI.createTableView(tableViewOptions);

// create table view event listener
tableview.addEventListener('click', function(e)
{
    if (e.rowData.test)
    {
        var win = Titanium.UI.createWindow({
            url:e.rowData.test,
            title:e.rowData.title
        });
        Titanium.UI.currentTab.open(win,{animated:true});
    }
});

// add table view to the window
Titanium.UI.currentWindow.add(tableview);
4

2 回答 2

1

解决了:

我不得不更改 tiapp.xml 文件并添加以下行:

    <supports-screens android:anyDensity="false"/>

在 android mainfest 部分,现在是:

<android xmlns:android="http://schemas.android.com/apk/res/android">
    <manifest>
            <supports-screens android:anyDensity="false"/>

        </manifest>

</android>
于 2012-04-20T22:19:51.467 回答
0

您应该小心,因为 google 的建议是仅将其用于 Android 1.4 及更低版本。更好的解决方案是创建适合屏幕尺寸的图像。

请参阅http://developer.android.com/guide/topics/manifest/supports-screens-element.html#any

于 2012-05-18T14:56:53.077 回答