我的主頁需要顯示兩個按鈕:登錄&註冊。使用兩個按鈕的頁面登錄活動應首先出現,但只有註冊屏幕出現。默認頁面不會改變
我對編碼非常陌生。所以,請很好:(我一直停留在這幾天。
以下是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>
包含你的主頁的類文件? – Lokesh