我有来自R.xml.preferences的设置活动以及首选项列表。这里的一个偏好看起来像这样:
<AuthPreference
android:title="@string/auth_title"
android:summary="@string/auth_summary"
android:key="pass"
android:defaultValue="1"
android:dialogMessage="Provide a message"
android:layout="@layout/preference_auth"/>
此首选项扩展了EditTextPreference类,因此我希望在单击首选项后显示EditText区域。但是只有空对话框,只有no和yes按钮。代码如下所示:
public class AuthPreference extends EditTextPreference {
private ImageView icon;
private EditText et;
public AuthPreference(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
setNegativeButtonText("no");
setPositiveButtonText("yes");
}
public AuthPreference(Context context, AttributeSet attrs) {
this(context, attrs, 0);
setNegativeButtonText("no");
setPositiveButtonText("yes");
}
@Override
protected void onBindView(View view) {
super.onBindView(view);
icon = (ImageView) view.findViewById(R.id.iconSelected);
}
@Override
protected void onBindDialogView(View view) {
some code
}
}
出了什么问题?
答案 0 :(得分:0)
事实证明第二个构造函数是错误的,因为将第三个arg传递给了设置为0的super的直接父级。所以在更改后我有
super(context, attrs);
而不是
super(context, attrs, 0);
您只需要小心并确保将相应的args传递给特定父级的构造函数。