我使用的SwitchPreference
代码曾经与Android 4.x配合使用,但自从我将设备更新到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(),而且我找不到区分这两种情况的方法。
它是Android 5.0.1中的错误还是有办法让这项工作干净利落?
答案 0 :(得分:1)
这是我的实现,适用于我的案例:
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);
}
}
}
然后你必须直接在SwitchPreference中使用你自己的“MySwitchPreference”。