MDPreference


Source link: https://github.com/XhinLiang/MDPreference

MDPreference

??

Introduce

Group of Preference, just like the Preference of original Android.

Easy to use and good effect in pre-Lollipop.

Sample

Import

Gradle

1. Add it in your root build.gradle at the end of repositories

allprojects {
  repositories {

...
maven {
 url "https://jitpack.io" 
}
  
}
 
}

2. Add the dependencies

dependencies {

  compile 'com.github.XhinLiang.MDPreference:mdpreference:0.3.2@aar'
  // You should add this because the 'mdpreference' depend on this
  compile 'com.github.XhinLiang.MDPreference:material:0.3.2@aar'
  // You should add these because the 'material' depend on them
  compile 'com.android.support:appcompat-v7:23.1.1'
  compile 'com.android.support:cardview-v7:23.1.1'
  compile 'com.android.support:recyclerview-v7:23.1.1' 
}

Usage

1. define the xml of PreferenceFragment in "../res/xml/your_xml_name.xml"

<?xml version="1.0" encoding="utf-8"?> <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:app="http://schemas.android.com/apk/res-auto">
  <io.github.xhinliang.mdpreference.PreferenceCategory android:title="Alert Settings">

<io.github.xhinliang.mdpreference.CheckBoxPreference

 android:key="preference_key_remind_the_same_day1"

 android:summary="Alert in the birthday"

 android:title="Alert first" />

<io.github.xhinliang.mdpreference.SwitchPreference

 android:key="preference_key_remind_the_same_day3"

 android:summary="Alert in three day before birthday"

 android:title="Alert second" />

<io.github.xhinliang.mdpreference.EditTextPreference

 android:key="preference_key_remind_the_same_daywwwd2"

 android:summary="Alert in a week before the birthday"

 android:positiveButtonText="OK"

 android:negativeButtonText="Cancel 

android:dialogTitle="Dialog"  

android:title="Alert third" /> 

  <io.github.xhinliang.mdpreference.SwitchPreference 

android:key="preference_key_remind_the_same_day34" 

android:summary="Alert in two weeks before the birthday" 

android:title="Alert fourth" /> 

  <io.github.xhinliang.mdpreference.ListPreference 

android:key="preference_key_alert_timess" 

android:summary="Select alert time" 

android:title="Alert time" 

app:entry_arr="@array/alert_time_entry" 

app:format_str="%s" 

app:value_arr="@array/alert_time_value" /> 

  <io.github.xhinliang.mdpreference.MultiSelectListPreference 

android:key="preference_key_alert_timeddwexss" 

android:summary="Select alert time" 

android:title="Alert time" 

app:entry_arr="@array/alert_time_entry"/> 
 </io.github.xhinliang.mdpreference.PreferenceCategory> </PreferenceScreen>

2. Create your SettingsFragment which extends io.github.xhinliang.mdpreference.PreferenceFragment

public class SettingsFragment extends PreferenceFragment {

  @Override
  public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

getPreferenceManager().setSharedPreferencesName(getString(R.string.app_name));

addPreferencesFromResource(R.xml.preference_settings);

  
}
 
}

Notice

  • There are lots of Class in the package corresponding to the original Android

  • Preference

  • EditTextPreference

  • ListPreference

  • MultiSelectListPreference

  • PreferenceCategory

  • PreferenceFragment

  • SwitchPreference

  • For MOST of Preference, you can use them just like original Android Preference.

  • For ListPreference you should use like this

  <io.github.xhinliang.mdpreference.ListPreference

android:key="preference_key_alert_timess"

android:summary="Select alert time"

android:title="Alert time"

app:entry_arr="@array/alert_time_entry"

app:format_str="%s"

app:value_arr="@array/alert_time_value" />

The entry_arr is the array for entry and the value_arr is the array for the value you can get like this

listPreference.getValue();

The format_str is the format String for the summary, the %s is for the selected entry.

  • For MultiSelectListPreference you should use like this
 <io.github.xhinliang.mdpreference.MultiSelectListPreference

android:key="preference_key_alert_timeddwexss"

android:summary="Select alert time"

android:title="Alert time"

app:entry_arr="@array/alert_time_entry"/>

The entry_arr is the array for entry. You can get the array of selected Integer like this

multiSelectListPreference.getIndexes();

ATTENTION

  • For ListPreference, you can get a String(MAY BE NULL) by using SharePreference which is the user selected.
  • For MultiSelectListPreference, You can get a int by using SharePreference which means the indexes of selected item. After that you can get a Set of Integer by using
// bit means the int you get from SharePreference. Set<Integer> set = MultiSelectListPreference.getSetByBit(bit);

More

Thanks

License

Copyright 2016 XhinLiang Copyright 2014 rey5137 Copyright 2015 balysv  Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License. You may obtain a copy of the License at
  http://www.apache.org/licenses/LICENSE-2.0  Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 

Resources

Page Indicator for Android ViewPager with a lot of animations and very original graphics, that uses an ellipses to dispose indication spots, and can draw a hand, like in old elevators.

Bored of the usual small points or stressed by the space occupied by a tab bar? Try this elevator-like elegant and original page indicator! A fully customizable super-easy Page Indicator, with stunning animations and very original and discreet graphics, for Android. Needs a very small screen, perfect when many pages need to be shown and reached in a small time.

A simple easy-to-integrate Camera Fragment for Android.

CameraFragment preview directly the camera view, and provides a easy API to capture or manage the device.

You can setup your own layout and control the camera using CameraFragment.

Another approach to create NavigationDrawer with Material concepts.

async-expandable-list contains 2 View classes: CollectionView and AsyncExpandableListView.

AsyncExpandableListView displays a list of headers and loads a sub-list under a header when a header item is clicked. The loading of sub-items can be done asynchronously and there are callbacks to populate the data into the list when it's done loading.

This is a demo project on Flatbuffers. Flatbuffers is an android parsing library which is much faster then GSON.

This project explains how to setup flatbuffers and use them to serialize and deserialize the models.

Gradle script for downsizing graphical assets in development builds

Usually you don't care how big the deployed APK is. However, if you are using metered connection and remote ADB, it would be good idea to build possibly smallest APK file.

Uglyfier for Android is a gradle script which will shrink all image resources in your application during build. It will look ugly, but image files will be 10 times smaller. Ninepatch (9-patch) PNGs are fully supported, with transparency preserved!

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes