gpt4 book ai didi

android - 如何在android中设置动画切换按钮

转载 作者:行者123 更新时间:2023-11-30 01:41:32 25 4
gpt4 key购买 nike

我按照某人在 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>

ToggleButton 在我的 layout.xml 中:

<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="" />

不,我确实在创建时将 checked 设置为 false。

Here这是我得到的视频。问题是布局首次加载时(图标应该是播放,而不是暂停)。如您所见,第一次更改后,它会正常工作。

最佳答案

好吧,因为没有人回答我搜索和搜索,终于找到了解决方案。

所以这是诀窍:

我的 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);

现在它可以正常加载和运行。

关于android - 如何在android中设置动画切换按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34439002/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com