Код: Выделить всё
На данный момент в моей основной активности у меня есть..
Код: Выделить всё
TextView view = findViewById(R.id.status_text);
Animation animation = AnimationUtils.loadAnimation(getApplicationContext(), R.anim.slide_right);
view.startAnimation(animation);
view.setText(status_text);
animation = AnimationUtils.loadAnimation(getApplicationContext(), R.anim.slide_left);
view.startAnimation(animation);
Подробнее здесь: https://stackoverflow.com/questions/787 ... iew-object
Мобильная версия