Answers for "android initial activity"

0

how to make an activity default in android studio

<activity
    android:name=".SplashScreen"
    android:screenOrientation="sensorPortrait"
    android:label="City Retails">
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
</activity>
Posted by: Guest on November-14-2021
0

android studio start activity

startActivity(new Intent(getApplicationContext(), newActivity.class));
Posted by: Guest on September-07-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language