0

Android 4.x で動作していたコードを使用していますSwitchPreferenceが、デバイスを Android 5.0.1 に更新してから動作しなくなりました。

SwitchPreference左側にタイトル、右側にON/OFFスイッチを表示するシンプルなものを持っています。

    <SwitchPreference
        android:key="myPref"            
        android:selectable="true"
        android:title="Title" 
        android:fragment="com.myApp.DeviceMonitorPrefsActivity"            
        android:switchTextOn="ON"
        android:switchTextOff="OFF"/>

PreferenceActivity では、このコントロールonPreferenceTreeClick()のタイトルをクリックすると、オーバーライドしてアクション (私の場合はセットアップ アクティビティを起動) を実行します。SwitchPreference

    @Override
    public boolean onPreferenceTreeClick(PreferenceScreen preferenceScreen, Preference preference) 
    {
        if(preference instanceof SwitchPreference){
            // My Action
        }
    }

Android 4.4.4 では、このアクションは、このコントロール (タイトル) の左側を押したときにのみ実行され、スイッチの状態を変更したときには実行されませんでした。

Android 5.0.1 では、スイッチの状態を変更しても onPreferenceTreeClick() が呼び出され、2 つのケースを区別する方法が見つかりませんでした。

Android 5.0.1 のバグですか、それとも問題なく動作させる方法はありますか?

4

1 に答える 1

1

ここにあるこの回避策はうまくいくようです: &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 に直接使用するだけです。

于 2015-06-22T14:28:28.987 に答える