我的主页需要显示两个按钮:login&寄存器。应首先显示带有两个按钮的页面登录活动,但只显示注册屏幕。
我对编码很新。所以,请你好一点:(我已经坚持了几天。
下面是AndroidManifest.xml。谁能发现我做错了什么?
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.thrd">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".LoginActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".RegisterActivity"></activity>
<activity android:name=".UserAreaActivity"></activity>
</application>
</manifest>
答案 0 :(得分:1)
你的清单文件没问题。您的代码中可能存在一些逻辑错误。在LoginActivity中。因此它启动RegisterActivity(可能在onCreate中),而不是显示自己。