Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8555715
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T15:11:15+00:00 2026-06-11T15:11:15+00:00

My application splash screen is set to have one image fade in, then another,

  • 0

My application splash screen is set to have one image fade in, then another, and then after the second one finishes, it’s set to start my Main activity.

As soon as my second image is almost done fading in, it crashes.

Here is my SplashScreen activity;

package com.example.gymbuddy;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.animation.Animation;
import android.view.animation.Animation.AnimationListener;
import android.view.animation.AnimationUtils;
import android.widget.ImageView;

public class SplashScreen extends Activity {

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_splashscreen);

    ImageView gym = (ImageView) findViewById(R.id.imageView1);
    Animation fade1 = AnimationUtils.loadAnimation(this, R.anim.gym);
    gym.startAnimation(fade1);

    ImageView buddy = (ImageView) findViewById(R.id.imageView2);
    Animation fade2 = AnimationUtils.loadAnimation(this, R.anim.buddy);
    buddy.startAnimation(fade2);
        fade2.setAnimationListener(new AnimationListener() {

            public void onAnimationStart(Animation animation) {

            }

            public void onAnimationEnd(Animation animation) {
                Intent intent = new Intent(SplashScreen.this, Main.class);
                SplashScreen.this.startActivity(intent);
                SplashScreen.this.finish();
            }

            public void onAnimationRepeat(Animation animation) {

            }
        });
}

@Override
public void onPause() {
    ImageView gym = (ImageView) findViewById(R.id.imageView1);
    gym.clearAnimation();

    ImageView buddy = (ImageView) findViewById(R.id.imageView2);
    buddy.clearAnimation();

}

}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T15:11:16+00:00Added an answer on June 11, 2026 at 3:11 pm

    I’m willing to bet it’s one of two things.

    Either Main.class does not exist

    OR

    Main.class is not declared in your manifest as an Activity.

    You should have something like this in your manifest:

    <activity android:name=".Main" android:label="@string/app_name">
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />
                    <category android:name="android.intent.category.LAUNCHER" />
                </intent-filter>
    </activity>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a splash screen on the application and on that form. I have
I have a wx application which I just added a splash screen to, the
All I have to do to show a splash screen in a view-based application
i have added a splash screen to my application by adding Default.png. the splash
I want to show a splash screen while my application's main form is loading
I hava a WP 7.5 app. I have a splash screen and then comes
I am using JWindow to display my splash screen during the application start up.
I have this main.Boot which is actually a splash screen requires to be always
I have a universal application. In this application I set a introduction image as
I need to show Splash Screen with Image & progress bar. In my application

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.