我有一个正在从事的钛合金项目。当我在 Titanium Studio 中选择 Run as > iPad 模拟器时,它会在我的应用程序中全屏运行 iPad 模拟器。但是,当我查看构建文件夹时,我只能看到一个 iphone 文件夹。如果我运行该 Xcode 项目并以 iPad 设备(硬件)为目标,则应用程序窗口很小,角落里有“x2”按钮。
我查看了 tiapp.xml 文件并启用/禁用target device="iphone"
并弄乱了其他设置,完成了干净的构建等,但仍然没有乐趣。
提前致谢。这是我的一些 tiapp.xml 设置 -
<property name="ti.ui.defaultunit" type="string">dp</property>
<iphone>
<orientations device="iphone">
<orientation>Ti.UI.PORTRAIT</orientation>
</orientations>
<orientations device="ipad">
<orientation>Ti.UI.PORTRAIT</orientation>
<orientation>Ti.UI.UPSIDE_PORTRAIT</orientation>
<orientation>Ti.UI.LANDSCAPE_LEFT</orientation>
<orientation>Ti.UI.LANDSCAPE_RIGHT</orientation>
</orientations>
</iphone>
<android xmlns:android="http://schemas.android.com/apk/res/android">
<tool-api-level>14</tool-api-level>
<manifest>
<uses-sdk android:maxSdkVersion="17"
android:minSdkVersion="8" android:targetSdkVersion="14"/>
<application android:theme="@android:style/Theme.Holo.Light"/>
</manifest>
</android>
<mobileweb>
<precache/>
<splash>
<enabled>true</enabled>
<inline-css-images>true</inline-css-images>
</splash>
<theme>default</theme>
</mobileweb>
<modules/>
<deployment-targets>
<target device="android">true</target>
<target device="blackberry">true</target>
<target device="ipad">true</target>
<target device="iphone">false</target>
<target device="mobileweb">true</target>
<target device="tizen">true</target>
</deployment-targets>
<sdk-version>3.1.3.GA</sdk-version>
<plugins>
<plugin version="1.0">ti.alloy</plugin>
</plugins>