我正在尝试使用TransitionDrawable在 *** 作栏上执行一些颜色动画.
我正在尝试的代码非常简单,在onCreate期间,我将过渡drawable作为actionbar背景:
Drawable d = getResources().getDrawable(R.drawable.actionbar);actionbarDrawable = new TransitionDrawable(new Drawable[] { d, d });getActionbar().setBackgroundDrawable(actionbarDrawable);
然后在事件上我替换了TransitionDrawable的第二个drawable并要求为它设置动画.
actionbarDrawable.setDrawableByLayerID(1, d); actionbarDrawable.startTransition(666);
我在我的活动上的relativeLayout上尝试了相同的代码,它似乎工作正常,为什么Actionbar不想合作的任何想法以及如何使其工作?
谢谢.
解决方法:
试试吧:
在values / string中:
<color name="blue">#FF4682B4</color><color name="red">#FFC30F0F</color>
在你的班上:
colorDrawable blue = new colorDrawable(getResources().getcolor(R.color.blue));colorDrawable red = new colorDrawable(getResources().getcolor(R.color.red));colorDrawable[] color = {blue, red}; TransitionDrawable trans = new TransitionDrawable(color);actionbar.setBackgroundDrawable(trans);trans.startTransition(500);
总结 以上是内存溢出为你收集整理的android – 可以在ActionBar上使用TransitionDrawable吗?全部内容,希望文章能够帮你解决android – 可以在ActionBar上使用TransitionDrawable吗?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)