gpt4 book ai didi

android - android :configChanges in manifest file 不允许出现错误字符串类型

转载 作者:IT老高 更新时间:2023-10-28 21:48:14 27 4
gpt4 key购买 nike

这是我的 list 文件,其中显示了 android:configChanges 不允许的错误字符串类型,请帮助我纠正错误。下面是我的 list 文件。

    <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.ifahja.banner"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk android:minSdkVersion="10"/>

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

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

<activity android:name="com.google.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>


</application>

<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>


</manifest>

最佳答案

android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"

screenSizesmallestScreenSize 属性在 SDK 10 中不可用。它们是在 API 级别 13 中引入的。

http://developer.android.com/guide/topics/manifest/activity-element.html#config

关于android - android :configChanges in manifest file 不允许出现错误字符串类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11208729/

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