Skip to content

Instantly share code, notes, and snippets.

View brunomateus's full-sized avatar

Bruno Mateus brunomateus

View GitHub Profile
@brunomateus
brunomateus / ListPreferenceWithSummary.java
Last active June 6, 2019 04:12
Android ListPreference with summary updated automatically
public class ListPreferenceWithSummary extends ListPreference{
public ListPreferenceWithSummary(Context context, AttributeSet attrs) {
super(context, attrs);
}
public ListPreferenceWithSummary(Context context) {
super(context);
}