1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
package cgeo.geocaching.settings;
import cgeo.geocaching.R;
import cgeo.geocaching.ui.UrlPopup;
import android.app.Activity;
import android.content.Context;
import android.content.res.TypedArray;
import android.preference.Preference;
import android.util.AttributeSet;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.LinearLayout;
/**
* Preference which shows a dialog containing textual explanation. The dialog has two buttons, where one will open a
* hyper link with more detailed information.
* <p>
* The URL for the hyper link and the text are given as custom attributes in the preference XML definition.
* </p>
*
*/
public class InfoPreference extends AbstractAttributeBasedPrefence {
/**
* Content of the dialog, filled from preferences XML.
*/
private String text;
/**
* URL for the second button, filled from preferences XML.
*/
private String url;
/**
* text for the second button to open an URL, filled from preferences XML.
*/
private String urlButton;
private LayoutInflater inflater;
public InfoPreference(Context context) {
super(context);
init(context);
}
public InfoPreference(Context context, AttributeSet attrs) {
super(context, attrs);
init(context);
}
public InfoPreference(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
init(context);
}
private void init(Context context) {
inflater = ((Activity) context).getLayoutInflater();
setPersistent(false);
}
@Override
protected int[] getAttributeNames() {
return new int[] { android.R.attr.text, R.attr.url, R.attr.urlButton };
}
@Override
protected void processAttributeValues(TypedArray values) {
text = values.getString(0);
url = values.getString(1);
urlButton = values.getString(2);
}
@Override
protected View onCreateView(ViewGroup parent) {
// show popup when clicked
setOnPreferenceClickListener(new OnPreferenceClickListener() {
@Override
public boolean onPreferenceClick(final Preference preference) {
new UrlPopup(preference.getContext()).show(preference.getTitle().toString(), text, url, urlButton);
// don't update the preference value
return false;
}
});
return addInfoIcon(parent);
}
/**
* Add an info icon at the left hand side of the preference.
*
* @param parent
* @return
*/
private View addInfoIcon(ViewGroup parent) {
View preferenceView = super.onCreateView(parent);
ImageView iconView = (ImageView) inflater.inflate(R.layout.preference_info_icon, parent, false);
LinearLayout frame = (LinearLayout) preferenceView.findViewById(android.R.id.widget_frame);
frame.setVisibility(View.VISIBLE);
frame.addView(iconView);
return preferenceView;
}
}
|