Мой XML-код: следующим образом:
Код: Выделить всё
Код: Выделить всё
Код: Выделить всё
public class SplashActivity extends AppCompatActivity {
ImageView logo;
TextView text;
Animation zoom_in;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.splashscreen_layout);
logo = findViewById(R.id.appLogo);
text = findViewById(R.id.appText);
zoom_in = AnimationUtils.loadAnimation(getApplicationContext(), R.anim.zoom_in);
logo.startAnimation(zoom_in);
text.startAnimation(zoom_in);
}
}
Подробнее здесь: https://stackoverflow.com/questions/790 ... other-view