我刚创建了一个没有任何活动的应用程序,当我添加布局和java类时,我开始编辑 AndroidManifest.xml 来制作intent-filter并添加标签和活动的东西。但后来它告诉我这个:
这是我的AndroidManifest.xml:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.arvisapps.practiceapp">
<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/label">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
这是MainActivity.java:
package com.arvisapps.practiceapp;
public class MainActivity {
}
我的activity_main.xml(我认为不需要它,但无论如何):
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
</RelativeLayout>