我有ListPreference
看起来像这样:
<ListPreference
android:title="Choose item"
android:summary="..."
android:key="itemList"
android:defaultValue="item1"
android:entries="@array/items"
android:entryValues="@array/itemValues" />
然后,我有另一个偏好,只有在ListPreference
中选择“item3”时才能启用。
我可以用android:dependency
以某种方式完成此操作吗?像android:dependency="itemList:item3"
谢谢!
答案 0 :(得分:28)
你能做到这一点的唯一方法是程序化。
您必须在ListPreference上设置更改侦听器,然后启用/禁用另一个。
itemList = (ListPreference)findPreference("itemList");
itemList2 = (ListPreference)findPreference("itemList2");
itemList.setOnPreferenceChangeListener(new
Preference.OnPreferenceChangeListener() {
public boolean onPreferenceChange(Preference preference, Object newValue) {
final String val = newValue.toString();
int index = itemList.findIndexOfValue(val);
if(index==3)
itemList2.setEnabled(true);
else
itemList2.setEnabled(false);
return true;
}
});
如果我是你,如果没有正确设置,我甚至不会显示第二个偏好。要做到这一点,你必须手动声明首选项(而不是在XML中)并添加/删除它而不是启用/禁用。
现在这不是你见过的最好的答案吗?!
灵光
答案 1 :(得分:7)
子类ListPreference
类,并覆盖setValue
和shouldDisableDependence
方法。
setValue
会在notifyDependencyChange(shouldDisableDependents())
之后致电super.setValue
。
仅当当前值为item3或shouldDisableDependence
中存储的任何其他所需值时, mDepedenceValue
才会返回false。
@Override
public void setValue(String value) {
String mOldValue = getValue();
super.setValue(value);
if (!value.equals(mOldValue)) {
notifyDependencyChange(shouldDisableDependents());
}
}
@Override
public boolean shouldDisableDependents() {
boolean shouldDisableDependents = super.shouldDisableDependents();
String value = getValue();
return shouldDisableDependents || value == null || !value.equals(mDepedenceValue);
}
答案 2 :(得分:3)
我试图编辑@waterdragon解决方案,但它是#34;同行拒绝&#34;。不知道为什么,因为它仍然是他的解决方案,但提供了一个具体的例子。
子类ListPreference
类,并覆盖setValue
和shouldDisableDependence
方法。
setValue
会在notifyDependencyChange(shouldDisableDependents())
之后致电super.setValue
。
仅当当前值为item3或shouldDisableDependence
中存储的任何其他所需值时, mDepedenceValue
才会返回false。
package xxx;
import android.content.Context;
import android.content.res.TypedArray;
import android.preference.ListPreference;
import android.util.AttributeSet;
import xxx.R;
public class DependentListPreference extends ListPreference {
private final String CLASS_NAME = this.getClass().getSimpleName();
private String dependentValue = "";
public DependentListPreference(Context context) {
this(context, null);
}
public DependentListPreference(Context context, AttributeSet attrs) {
super(context, attrs);
if (attrs != null) {
TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.DependentListPreference);
dependentValue = a.getString(R.styleable.DependentListPreference_dependentValue);
a.recycle();
}
}
@Override
public void setValue(String value) {
String mOldValue = getValue();
super.setValue(value);
if (!value.equals(mOldValue)) {
notifyDependencyChange(shouldDisableDependents());
}
}
@Override
public boolean shouldDisableDependents() {
boolean shouldDisableDependents = super.shouldDisableDependents();
String value = getValue();
return shouldDisableDependents || value == null || !value.equals(dependentValue);
}
}
更新你的attrs.xml:
<attr name="dependentValue" format="string" />
<declare-styleable name="DependentListPreference">
<attr name="dependentValue" />
</declare-styleable>
并在您的偏好内部xml将其绑定到依赖于它的任何其他首选项:
<xxx.DependentListPreference
android:key="pref_key_wifi_security_type"
android:title="Wi-Fi Security Type"
app:dependentValue="1"
android:entries="@array/wifi_security_items"
android:entryValues="@array/wifi_security_values" />
<EditTextPreference
android:key="pref_key_wifi_security_key"
android:title="WPA2 Security Key"
android:summary="Tap to set a security key"
android:password="true"
android:dependency="pref_key_wifi_security_type" />
答案 3 :(得分:0)
在xml中添加一行
app:isPreferenceVisible="false"
然后在java中为item3添加一个onClickListener,在选中时将item设置为true