我想在我的壁纸中实现一个关于框。为此,我希望显示一个窗口,其中包含用户单击它时的信息。
没有可用的控件(如复选框、列表视图等)可用于此......似乎适合关于框。我的对话框首选项:
public class DialogPref extends DialogPreference {
public DialogPref(Context context, AttributeSet attrs) {
super(context, attrs);
}
@Override
protected void onDialogClosed(boolean positiveResult) {
super.onDialogClosed(positiveResult);
persistBoolean(positiveResult);
}
}
那么你能帮我实现一个关于框的弹出窗口吗?