从google play上的文档中我了解到android:name
在搜索和应用时也很重要。我的应用程序称为“自行车骰子”,但只会在搜索为“BikeDice”时出现,它是AndroidManifest.xml
文件中的名称。我尝试将其更改为“Bike Dice”,这会破坏代码并且应用程序在启动时崩溃,但是当我尝试在Google Play中更新它时,我发现它首先出现在搜索“Bike Dice”时。
所以我的问题是:是否有一个黑客或其他东西,允许你有两个单词android:name
?
编辑:这是我的AndroidManifest.xml
文件:
<?xml version='1.0' encoding='utf-8'?>
<manifest android:versionCode="102" android:versionName="0.1.2" android:windowSoftInputMode="adjustPan" package="com.dice.bike" xmlns:android="http://schemas.android.com/apk/res/android">
<supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:resizeable="true" android:smallScreens="true" android:xlargeScreens="true" />
<application android:debuggable="false" android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale" android:label="@string/app_name" android:launchMode="singleTop" android:name="BikeDice" android:screenOrientation="portrait" android:theme="@android:style/Theme.Black.NoTitleBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" />
<activity android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize" android:name="com.google.android.gms.ads.AdActivity" android:theme="@android:style/Theme.Translucent" />
</application>
<uses-sdk android:minSdkVersion="10" android:targetSdkVersion="19" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
</manifest>
答案 0 :(得分:4)
请注意,您的清单已经有一个名为android:label
的属性,该属性已自动生成。
android:name="BikeDice"
android:icon="@drawable/icon"
android:label="@string/app_name"
因此,您只需选择res/values/string.xml
文件,并将app_name
的内容替换为Bike Dice
标记集中的<resources>
<string name="app_name">Bike Dice</string>
现在,它可能只是在说BikeDice,因为这可能是您在第一次使用new Android Project
向导时指定的应用程序名称。