其他分享
首页 > 其他分享> > Android SwitchCompat在toggle()或setChecked()上播放动画

Android SwitchCompat在toggle()或setChecked()上播放动画

作者:互联网

我在Android的Drawernavigation中添加了SwitchCompat.

首先,我将项目的actionlayout设置为switchlayout.xml:

<android.support.v7.widget.SwitchCompat xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="right|center_vertical"
app:buttonTint="@color/colorPrimary"
app:switchPadding="16dp" />

现在,我试图更改代码中的Buttons checkstate,尝试使用switchCopmatObj.toggle(),还尝试使用switchCompatObj.setChecked(!switchCompatObj.isChecked())

但它只会更改开关的颜色,而不会播放开关从一侧移到另一侧的动画.如何从代码中播放此动画?

解决方法:

我遇到了同样的问题.似乎SwitchCompat在这一点上已损坏. setChecked()调用应该更新拇指可绘制对象的动画器,但永远不会调用onAnimationEnd.

同时,在尝试将发送给SwitchCompat的触摸事件伪装成许多东西之后,我发现了一个丑陋的解决方法:我没有调用setChecked(),而是从菜单中删除了该项,然后再次添加:

// Update toggle state
mDrawerView.getMenu().removeItem(R.id.drawer_menu_availability);
final SwitchCompat toggle = (SwitchCompat) LayoutInflater.from(this).inflate(R.layout.drawer_menu_item_availability, null);
toggle.setChecked(mAvailable);
toggle.setOnCheckedChangeListener((buttonView, isChecked) -> toggleAvailability());
final MenuItem added = mDrawerView.getMenu().add(R.id.drawer_menu_group_actions, R.id.drawer_menu_availability, Menu.FIRST, text);
added.setActionView(toggle);

但是,这迫使您:

>具有菜单项所在菜单组的ID
>使用android:orderInCategory来订购菜单项,以便在添加回菜单项时将其返回到同一位置.

希望这可以帮助.

编辑:这不会播放动画,但至少拇指在正确的位置.

标签:material,android-appcompat,android
来源: https://codeday.me/bug/20191119/2035528.html