Not Working!!
See original GitHub issueI’m doing this,it is not working for me,any pointers guys
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
setEnterTransition();
setExitTransition();
}
@TargetApi(21)
private void setEnterTransition(){
Fade fade_transition = new Fade();
fade_transition.setDuration(1000);
getWindow().setEnterTransition(fade_transition);
}
@TargetApi(21)
private void setExitTransition(){
Slide slide_transition = new Slide();
slide_transition.setDuration(1000);
getWindow().setExitTransition(slide_transition);
}
Issue Analytics
- State:
- Created 7 years ago
- Reactions:5
- Comments:11 (1 by maintainers)
Top Results From Across the Web
138 Synonyms & Antonyms for NOT WORKING - Thesaurus.com
synonyms for not working · baseless · false · inoperative · irrational · null · unreasonable · unscientific · unsound ...
Read more >Working Not Working
Trusted by over 2000 of the world's most innovative companies to staff their creative projects.
Read more >Not Working: Cohen, Josh - Amazon.com
'Not Working' is an excellent companion to existentialism or those reading that subject or the subject of work, its philosophy and stress caused...
Read more >Not Working: Where Have All the Good Jobs Gone?
Not Working is about those who can't find full-time work at a decent wage—the underemployed—and how their plight is contributing to widespread ...
Read more >Fix an installed Android app that isn't working - Google Support
Try the following steps if an app installed on your phone has any of these problems: Crashing. Won't open. Won't respond. Isn't working...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hello @s1mar I think you have to start the activity with this code
I’m having the same issues,setExitTransition(Slide)not working,but the enter return and reenter is working
please help me,thanks!