package org.itxtech.daedalus.widget; import android.annotation.TargetApi; import android.content.Context; import android.os.Build; import android.preference.ListPreference; import android.util.AttributeSet; /** * Daedalus Project * * @author iTX Technologies * @link https://itxtech.org * <p> * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. */ public class ClickPreference extends ListPreference { @TargetApi(Build.VERSION_CODES.LOLLIPOP) public ClickPreference(Context context, AttributeSet attrs, int defStyleAttr) { super(context, attrs, defStyleAttr); } public ClickPreference(Context context, AttributeSet attrs) { super(context, attrs); } public ClickPreference(Context context) { super(context); } @Override protected void onClick() { } }