Answer the question
In order to leave comments, you need to log in
How to change default activity?
How to change the original activity. By default, it's MainActivity. I want to change to LoginPage
Below is the code in the manifest
<activity android:name=".LoginPage"></activity>
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
Answer the question
In order to leave comments, you need to log in
<activity android:name=".LoginPage">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<action android:name="android.intent.action.MAIN" />
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question