gpt4 book ai didi

java - 我应该在 Android tiapp.xml 中的什么地方添加

转载 作者:行者123 更新时间:2023-11-29 22:25:37 26 4
gpt4 key购买 nike

[WARN] For your density-specific images

(android/images/high|medium|low|res-*) to be effective, you should put a element with anyDensity="true" in the section of your tiapp.xml or in a custom AndroidManifest.xml

我在我的模拟器中收到此警告。 Now where do i add <supports-screens> in my tiapp.xml

<?xml version="1.0" encoding="UTF-8"?>
<ti:app
xmlns:ti="http://ti.appcelerator.org">
<id>com.gfg.gfgfg</id>
<name>fgfgfgf</name>
<version>1.0</version>
<publisher>uuuu</publisher>
<url>http://www.uuu.com</url>
<description>No description
provided</description> <copyright>2011
by John</copyright>
<icon>default_app_logo.png</icon>
<persistent-wifi>false</persistent-wifi>
<prerendered-icon>false</prerendered-icon>
<statusbar-style>default</statusbar-style>
<statusbar-hidden>false</statusbar-hidden>
<fullscreen>false</fullscreen>
<navbar-hidden>false</navbar-hidden>
<analytics>true</analytics>
<guid>cba0a3f5-1d77-4cb2-bac0-4fb27109f48b</guid>
<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">
</android>
<modules></modules>
</ti:app>

最佳答案

我不确定您显示的是什么文件,但 supports-screens 值是使用 list 文件设置的;哪个(我相信)需要被称为 AndroidManifest.xml。

这里是完整的细节:http://developer.android.com/guide/topics/manifest/supports-screens-element.html

list 文件通常如下所示:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="dsfdsfds.dasdsa"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="8" />

<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".dsfdsfds"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

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

</manifest>

<supports-screens>可以放在里面的任何地方 <manifest>

有人可以支持我吗?海报 XML 看起来像 Android 的 list 文件吗?

关于java - 我应该在 Android tiapp.xml 中的什么地方添加 <supports-screens>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6045818/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com