我创建了一个动画切换按钮,就像有人在this问题所做的那样。它工作正常但有一点问题,当首次创建布局时,我的切换按钮背景是animationdrawable的第一帧(它应该是它的最后一帧)。一旦我第一次点击它,它就能正常工作。
编辑: toggle_pause_anim.xml:
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
android:oneshot="true" >
<item
android:drawable="@drawable/pause1"
android:duration="50"/>
...
<item
android:drawable="@drawable/pause20"
android:duration="50"/>
</animation-list>
toggle_pause_anim.xml:
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
android:oneshot="true" >
<item
android:drawable="@drawable/play1"
android:duration="50"/>
...
<item
android:drawable="@drawable/pause20"
android:duration="50"/>
</animation-list>
toggle_play_pause_anim.xml:
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/toggle_play_anim" android:state_checked="false"/>
<item android:drawable="@drawable/toggle_pause_anim" android:state_checked="true"/>
</selector>
toggle_play_pause_bg:
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:id="@+android:id/background"
android:drawable="@android:color/transparent"/>
<item
android:id="@+android:id/toggle"
android:drawable="@drawable/toggle_play_pause_anim"/>
</layer-list>
我的layout.xml中的 ToggleButton
:
<ToggleButton
android:id="@+id/play_pause"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/toggle_play_pause_bg"
android:textOff=""
android:textOn="" />
不,我在创建时将check设置为false。
Here这是我所获得的视频。问题是首次加载布局时(图标应该播放,而不是暂停)。如您所见,在第一次更改后,它会在之后正常工作。
答案 0 :(得分:1)
好吧,因为没有人回答我搜索和搜索,最后找到解决方案。
所以这就是诀窍:
我的layout.xml中的ToggleButton:
<ToggleButton
android:id="@+id/play_pause"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/toggle_play_pause_anim"
android:textOff=""
android:textOn="" />
事实证明,不需要图层可绘制,并且在java代码中,在onCreate
方法中添加了这些行:
toggleBtn = (ToggleButton) findViewById(R.id.play_pause);
StateListDrawable stateListDrawable = (StateListDrawable) toggleBtn.getBackground();
AnimationDrawable animationDrawable = (AnimationDrawable) stateListDrawable.getCurrent();
animationDrawable.selectDrawable(animationDrawable.getNumberOfFrames() - 1);
现在它加载并运行得很好。
答案 1 :(得分:0)
请添加您的代码,但似乎您应该在onCreate Activity方法中使用setChecked(true)或setChecked(false)。