android - Lollipop 中的 SwitchPreference 回调行为更改

标签 android android-5.0-lollipop preferences android-5.1.1-lollipop

enter image description here

在我们的项目中,我们使用类似于 wifi 设置的 SwitchPreference。用户可以通过单击切换按钮来切换值,用户可以通过单击标题来查看更多选项。

但这在 Lollipop 中不起作用。我可以看到 Lollipop 中的一些行为变化。

在奇巧中:

当用户点击切换按钮时,onPreferenceChanged 回调被调用,当用户点击标题时,onPreferenceClicked 被调用。

在 Lollipop 中: 您点击切换按钮或标题 onPreferenceClicked 总是被调用,然后 onPreferenceChanged 被调用。 我怎样才能在 Lollipop 中获得相同的行为?这种行为破坏了我们的功能。

最佳答案

我遇到了同样的问题,我发现了这个:https://code.google.com/p/android/issues/detail?can=2&start=0&num=100&q=&colspec=ID%20Type%20Status%20Owner%20Summary%20Stars&groupby=&sort=&id=172425

经过一些尝试,我找到了如何实现适用于我的案例的解决方法:

public class MySwitchPreference extends SwitchPreference {

/**
 * Construct a new SwitchPreference with the given style options.
 *
 * @param context The Context that will style this preference
 * @param attrs Style attributes that differ from the default
 * @param defStyle Theme attribute defining the default style options
 */
public MySwitchPreference(Context context, AttributeSet attrs, int defStyle) {
    super(context, attrs, defStyle);
}

/**
 * Construct a new SwitchPreference with the given style options.
 *
 * @param context The Context that will style this preference
 * @param attrs Style attributes that differ from the default
 */
public MySwitchPreference(Context context, AttributeSet attrs) {
    super(context, attrs);
}

/**
 * Construct a new SwitchPreference with default style options.
 *
 * @param context The Context that will style this preference
 */
public MySwitchPreference(Context context) {
    super(context, null);
}

@Override
protected void onBindView(View view) {
    ViewGroup viewGroup= (ViewGroup)view;
    setSwitchClickable(viewGroup);
    super.onBindView(view);
}

private void setSwitchClickable(ViewGroup viewGroup) {
      if (null == viewGroup) {
      return;
  }

  int count = viewGroup.getChildCount();
  for(int n = 0; n < count; ++n) {
      View childView = viewGroup.getChildAt(n);
      if(childView instanceof Switch) {
          final Switch switchView = (Switch) childView;
          switchView.setClickable(true);
          return;
      } else if (childView instanceof ViewGroup){
        ViewGroup childGroup = (ViewGroup)childView;
        setSwitchClickable(childGroup);
      }
  }

}

然后你只需要直接使用你自己的“MySwitchPreference”到SwitchPreference。

关于android - Lollipop 中的 SwitchPreference 回调行为更改,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30906487/

相关文章:

android - 使用未发布的应用测试 Android 应用内购买

Android ParseQueryAdapter 分页与 RecyclerView.Adapter

Cocoa - 关于 NSUserDefaults 值更改的通知?

android - 在特定的 x\y 坐标上绘制自定义 View

java - Quickblox 自定义对象推送到包含 : ' , ' or ' " ' 的数组字符串

java - 该方法在 ListView 中应用了错误的元素

Android API 21 - TimePicker 小部件

Android - GCMRegistrar.checkDevice() 的 UnSupportedOperation 异常

java - 如何从服务检索偏好数据