我想在 Android 中创建一个带有文本和背景图像的按钮。背景图像应每 X 次淡入淡出。
我使用带有 2 个图像的 TransitionDrawable 进行这项工作。
但我不能让它处理超过 2 个图像。
我有的 :
在 Java 代码中,我创建了一个 Button 并设置了一个背景(这是一个在 XML 中定义的 TransitionDrawable)。我开始过渡。
final Button b = new Button(getApplicationContext());
b.setTextColor(getResources().getColor(R.color.white));
b.setText("Some text");
b.setBackgroundDrawable(getResources().getDrawable(R.drawable.tile));
StateListDrawable background = (StateListDrawable) b.getBackground();
TransitionDrawable td = (TransitionDrawable) background.getCurrent();
td.startTransition(2000);
在 XML 我在 tile.xml 中定义
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" >
<shape>
<solid
android:color="#449def" />
</shape>
</item>
<item android:drawable="@drawable/transition">
<shape>
<solid
android:color="#0000ff" />
</shape>
</item>
</selector>
最后是一个transition.xml
<?xml version="1.0" encoding="utf-8"?>
<transition xmlns:android="http://schemas.android.com/apk/res/android" android:oneshot="false">
<item android:drawable="@drawable/desert"/>
<item android:drawable="@drawable/hydrangeas" />
<item android:drawable="@drawable/jellyfish" />
</transition>
现在的效果是,当我启动应用程序时,会显示沙漠图像。该图像按应有的方式淡入绣球花图像。但是从未显示过水母图像。
在 TransitionDrawables 的文档中,声明您可以指定超过 2 个可绘制对象,但我无法使其正常工作。
我也试过这个没有任何 XML 但在纯 JAVA 中但这给出了完全相同的问题:-(