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

时间:2015-12-03 00:08:45

标签: android android-appcompat material

我在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" />

现在我正在尝试更改代码中的按钮检查状态,我正在尝试switchCopmatObj.toggle()并尝试switchCompatObj.setChecked(!switchCompatObj.isChecked())

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

1 个答案:

答案 0 :(得分:3)

我遇到了同样的问题。似乎 SwitchCompat 在这一点上被打破了。 setChecked()调用应该更新拇指drawable但不会调用 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 订购您的菜单项,以便您的商品在重新添加时返回到同一位置。

希望这有帮助。

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