Answers for "android studio button animations"

0

android studio button animations

helloWorld = findViewById(R.id.hello_world);

helloWorld.setAlpha(0f);
helloWorld.setTranslationY(50);

helloWorld.animate().alpha(1f).translationYBy(-50).setDuration(1500);
Posted by: Guest on February-03-2022

Code answers related to "android studio button animations"

Browse Popular Code Answers by Language