我的应用程序出现错误,错误提示
ParseError at [row,col]:[66,34] Message: http://www.w3.org/TR/1999/REC-xml-names-19990114#AttributeNSNotUnique? Button&layout_column
Run Code Online (Sandbox Code Playgroud)
我找不到错误在哪里..我不知道哪些是行和列...也许在 xml 文件中?
这是AndroidManifest文件
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.***">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="App Name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name="com.example.appname.MainActivity"
android:theme="@style/Theme.AppCompat.NoActionBar"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<!-- Sample AdMob App ID: ca-app-pub-3940256099942544~3347511713 -->
<meta-data
android:name="appname"
android:value="ca-app-pub-2703074771097768~4557375307"/>.
</application>
Run Code Online (Sandbox Code Playgroud)