yongjhih / SwitchPreferenceCompat

SwitchPreferenceCompat from https://plus.google.com/+ChristianGollner/posts/badausxo1J6
MIT License
43 stars 9 forks source link

SwitchPreferenceCompat (Deprecated)

Build Status Stories in Ready Bountysource Maven Central Download

Use support-v7-preferences instead

Allow easy to use SwitchCompat as preference.

SwitchPreferenceCompat

Usage

<CheckBox
    android:key="example_checkbox"
    android:title="@string/pref_title_example"
    android:summary="@string/pref_description_example"
    android:defaultValue="true" />

to

<com.cgollner.unclouded.preferences.SwitchPreferenceCompat
    android:key="example_checkbox"
    android:title="@string/pref_title_example"
    android:summary="@string/pref_description_example"
    android:defaultValue="true" />

Installation

build.gradle:

dependencies {
    compile 'com.infstory:switch-preference-compat:1.0.+'
}

Requirement

build.gradle:

dependencies {
    compile 'com.android.support:appcompat-v7:21.+'
}

Credit

This SwitchPreferenceCompat is imported from https://plus.google.com/+ChristianGollner/posts/badausxo1J6