blob: c2fac6a95d46ab5927ca2dbd69e30ef9c405a38b (
plain)
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
|
package cgeo.geocaching.settings;
import android.content.Context;
import android.preference.EditTextPreference;
import android.util.AttributeSet;
/**
* This is just a dummy preference, to be able check for the type.
* <p>
* Use it exactly as an EditTextPreference
*
* @see NewSettingsActivity - search for EditPasswordPreference
* @author koem
*/
public class EditPasswordPreference extends EditTextPreference {
public EditPasswordPreference(Context context) {
super(context);
}
public EditPasswordPreference(Context context, AttributeSet attrs) {
super(context, attrs);
}
public EditPasswordPreference(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
}
|