这是我第一次制作 android 应用程序。我只为我的第一个应用程序做了 3 个设计,但是每次运行 Android 虚拟设备时,我的应用程序的图标都没有显示(应用程序本身 :( )。有人可以帮助我吗?我真的新进入这个。
这是我的清单文件。谢谢!
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="edu.sti.myactivity">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".Mylove">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".RegisterActivity" />
<activity android:name=".UserAreaActivity"></activity>
</application>
</manifest>
Run Code Online (Sandbox Code Playgroud)