Smooth text change in android animation

前端 未结 7 2027
刺人心
刺人心 2020-12-11 00:29

I want to add animation in android text view so that when a text changes it should change smoothly and slowly. Like, fade in or fade out when the text changes. Is it possibl

7条回答
  •  我在风中等你
    2020-12-11 01:06

    add android:animateLayoutChanges=true to root view , then in code behind

      call this line of code at onCreate
    
    
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
        ((ViewGroup) findViewById(R.id.llRoot)).getLayoutTransition()
          .enableTransitionType(LayoutTransition.CHANGING);
       }
    

提交回复
热议问题