Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

450
Views
Where is default animation present in android?

I want to know where is default animation available in android?

When I click the application icon, there is transition animation. Let me know where the transition animation is available?

I checked in frameworks/base/core/res/res/anim but still I couldn't figure out which class default animation been added.

  1. When I open application for second or third time, transition comes from bottom to top. I need to modify with no animation. So let me know where those default animations are available?
over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

I think you are looking for these animations : (Default activityOpenEnterAnimation)

You can override it in your themes.xml file

Animation.Activity

Try this for Alpha animations in your launcher activity :

LinearLayout layout = (LinearLayout) findViewById(R.id.idLayout); // Your layout
AlphaAnimation animation = new AlphaAnimation(0.0f , 1.0f ) ;
animation.setFillAfter(true);
animation.setDuration(1200);
//apply the animation ( fade In ) to your Layout
layout.startAnimation(animation);
over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!