Created
November 5, 2014 16:59
-
-
Save cgollner/5b31123c98b2c1cad8dc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.cgollner.unclouded.preferences; | |
import android.annotation.TargetApi; | |
import android.content.Context; | |
import android.os.Build; | |
import android.preference.CheckBoxPreference; | |
import android.util.AttributeSet; | |
import com.cgollner.unclouded.R; | |
public class SwitchPreferenceCompat extends CheckBoxPreference { | |
public SwitchPreferenceCompat(Context context, AttributeSet attrs, int defStyleAttr) { | |
super(context, attrs, defStyleAttr); | |
init(); | |
} | |
@TargetApi(Build.VERSION_CODES.LOLLIPOP) | |
public SwitchPreferenceCompat(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) { | |
super(context, attrs, defStyleAttr, defStyleRes); | |
init(); | |
} | |
public SwitchPreferenceCompat(Context context, AttributeSet attrs) { | |
super(context, attrs); | |
init(); | |
} | |
public SwitchPreferenceCompat(Context context) { | |
super(context); | |
init(); | |
} | |
private void init() { | |
setWidgetLayoutResource(R.layout.preference_switch_layout); | |
} | |
} |
any chance of getting animations to work?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Works good but doesn't not work with TalkBack Accessibility when SwitchCompact used.
Any idea how to get TalkBack to read it?
Everything is OK if Checkbox used