├── .gitignore ├── .idea ├── .name ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── gradle.xml ├── misc.xml ├── modules.xml ├── scopes │ └── scope_settings.xml └── vcs.xml ├── LICENSE ├── MaterialDialog.iml ├── MaterialPreferenceCompat.iml ├── README.md ├── art ├── kitkat-1.png ├── kitkat.png ├── lollipop-1.png └── lollipop.png ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── library ├── .gitignore ├── build.gradle ├── library.iml ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── moe │ │ └── feng │ │ └── materialcompat │ │ └── preference │ │ ├── EditTextPreferenceCompat.java │ │ ├── ListPreferenceCompat.java │ │ ├── MultiSelectListPreferenceCompat.java │ │ └── SwitchPreferenceCompat.java │ └── res │ ├── layout │ ├── pref_layout_edittext.xml │ └── pref_widget_switch.xml │ └── values │ └── dimens.xml ├── sample ├── .gitignore ├── build.gradle ├── proguard-rules.pro ├── sample.iml └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── moe │ │ └── feng │ │ └── materialcompat │ │ └── sample │ │ ├── HomeFragment.java │ │ └── SettingsActivity.java │ └── res │ ├── drawable-xxhdpi │ └── ic_launcher.png │ ├── layout │ └── activity_settings.xml │ ├── values-zh-rCN │ └── strings.xml │ ├── values-zh-rTW │ └── strings.xml │ ├── values │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml │ └── xml │ └── pref_home.xml └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | MaterialPreferenceCompat -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/LICENSE -------------------------------------------------------------------------------- /MaterialDialog.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/MaterialDialog.iml -------------------------------------------------------------------------------- /MaterialPreferenceCompat.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/MaterialPreferenceCompat.iml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/README.md -------------------------------------------------------------------------------- /art/kitkat-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/art/kitkat-1.png -------------------------------------------------------------------------------- /art/kitkat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/art/kitkat.png -------------------------------------------------------------------------------- /art/lollipop-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/art/lollipop-1.png -------------------------------------------------------------------------------- /art/lollipop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/art/lollipop.png -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/gradlew.bat -------------------------------------------------------------------------------- /library/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /library/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/library/build.gradle -------------------------------------------------------------------------------- /library/library.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/library/library.iml -------------------------------------------------------------------------------- /library/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/library/proguard-rules.pro -------------------------------------------------------------------------------- /library/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/library/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /library/src/main/java/moe/feng/materialcompat/preference/EditTextPreferenceCompat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/library/src/main/java/moe/feng/materialcompat/preference/EditTextPreferenceCompat.java -------------------------------------------------------------------------------- /library/src/main/java/moe/feng/materialcompat/preference/ListPreferenceCompat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/library/src/main/java/moe/feng/materialcompat/preference/ListPreferenceCompat.java -------------------------------------------------------------------------------- /library/src/main/java/moe/feng/materialcompat/preference/MultiSelectListPreferenceCompat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/library/src/main/java/moe/feng/materialcompat/preference/MultiSelectListPreferenceCompat.java -------------------------------------------------------------------------------- /library/src/main/java/moe/feng/materialcompat/preference/SwitchPreferenceCompat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/library/src/main/java/moe/feng/materialcompat/preference/SwitchPreferenceCompat.java -------------------------------------------------------------------------------- /library/src/main/res/layout/pref_layout_edittext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/library/src/main/res/layout/pref_layout_edittext.xml -------------------------------------------------------------------------------- /library/src/main/res/layout/pref_widget_switch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/library/src/main/res/layout/pref_widget_switch.xml -------------------------------------------------------------------------------- /library/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/library/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /sample/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /sample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/sample/build.gradle -------------------------------------------------------------------------------- /sample/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/sample/proguard-rules.pro -------------------------------------------------------------------------------- /sample/sample.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/sample/sample.iml -------------------------------------------------------------------------------- /sample/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/sample/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /sample/src/main/java/moe/feng/materialcompat/sample/HomeFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/sample/src/main/java/moe/feng/materialcompat/sample/HomeFragment.java -------------------------------------------------------------------------------- /sample/src/main/java/moe/feng/materialcompat/sample/SettingsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/sample/src/main/java/moe/feng/materialcompat/sample/SettingsActivity.java -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/sample/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/layout/activity_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/sample/src/main/res/layout/activity_settings.xml -------------------------------------------------------------------------------- /sample/src/main/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/sample/src/main/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /sample/src/main/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/sample/src/main/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/sample/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/sample/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/sample/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /sample/src/main/res/xml/pref_home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fython/MaterialPreferenceCompat/HEAD/sample/src/main/res/xml/pref_home.xml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':library', ':sample' 2 | --------------------------------------------------------------------------------