大家好,我的代码有问题,因为它不是向我显示应用程序的名称,而是显示@ string / app_name。 这是我在AndroidManifest.xml中的代码:`
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme"
android:debuggable="true" >
<activity
android:name=".MainActivity"
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>
</resources>
<string name="app_name">OMGAndroid</string>
<string name="textview">Bada Aaya</string>
<string name="action_settings">Settings</string>
<string name="button">Update the TextView</string>
答案 0 :(得分:1)
您必须将<string>
放在<resources>
代码
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">OMGAndroid</string>
<string name="textview">Bada Aaya</string>
<string name="action_settings">Settings</string>
<string name="button">Update the TextView</string>
</resources>
答案 1 :(得分:0)
检查您使用的资源xml的名称。它应该是“strings.xml”。 此外,资源标签应该使用类似的东西 -
<resources>
<string name="app_name">OMGAndroid</string>
<string name="textview">Bada Aaya</string>
<string name="action_settings">Settings</string>
<string name="button">Update the TextView</string>
</resources>