我的AndroidManifest.xml文件出错了。我正在再次启动测试,突然Android Studio崩溃,再次启动,然后发生下一个错误(很抱歉,我没有足够的评级直接上传图片):
的数据
以下是Gradle控制台:
我的strings.xml文件是正确的:
<resources>
<string title="app_name">PaySpaceMagazine</string>
<string title="hello_world">Hello world!</string>
<string title="action_settings">Settings</string>
<string title="actual">Актуально</string>
<string title="last_news">Последние известия</string>
此外,还有其他清单文件没有任何错误:
<?xml version="1.0" encoding="utf-8"?>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<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>
有人有同样的问题吗?
3条答案
按热度按时间ccrfmcuu1#
在屏幕截图中发布的清单中,您使用
android:title
而不是android:name
作为Activity
。请使用以下命令更改它该属性是必需的。您可以在此处阅读更多信息
kfgdxczn2#
尝试将清单文件更改为
n53p2ov03#
这就是它不从字符串中提取的问题,它应该显示应用程序名称
最简单的解决方案创建新的应用程序项目打开清单复制行使用户不要按下它,否则你会再次打破字符串粘贴行超过你打破的字符串,如果你想更改名称转到字符串xml更改名称那里