我的用户界面有问题。
我使用 changin tiapp.xml 将默认 UI 更改为 Holo:
<android xmlns:android="http://schemas.android.com/apk/res/android">
<tool-api-level>14</tool-api-level>
<manifest>
<application android:theme="@android:style/Theme.Holo">
<activity android:name=".ThemetestActivity" android:theme="@android:style/Theme.Holo">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
</manifest>
</android>
Holo UI 工作正常。但是如果我用道具模型打开新窗口:真的,新窗口会用旧的用户界面打开,而不是全息。但是如果 modal 为 false,它可以正常工作(但后退按钮不起作用。我使用 modal: ture,因为我需要后退按钮才能工作)。
这是我的代码:
var myButton = Titanium.UI.createButton({
title: 'Test button',
width: 500,
height: 100,
top: 60,
font: { fontSize: 30 }
});
table.addEventListener('click', function(e) {
var window = Ti.UI.createWindow({
title:'Flight Details',
backgroundColor:'#fff',
backButtonTitle: 'Back',
modal: true
});
window.add(myButton);
window.open( { animated: true } );
});
为什么新窗口不在 Holo UI 中?