You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
447 B
Java

package com.langerhans.one.utils;
import android.content.Context;
import android.util.AttributeSet;
import com.htc.preference.HtcListPreference;
public class HtcListPreferencePlus extends HtcListPreference {
public HtcListPreferencePlus(Context context, AttributeSet attrs) {
super(context, attrs);
}
public HtcListPreferencePlus(Context context) {
super(context);
}
public void show() {
showDialog(null);
}
}