• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

XhinLiang/MDPreference: [DEPPERCATED] MDPreference makes the Material Design Pre ...

原作者: [db:作者] 来自: 网络 收藏 邀请

开源软件名称(OpenSource Name):

XhinLiang/MDPreference

开源软件地址(OpenSource Url):

https://github.com/XhinLiang/MDPreference

开源编程语言(OpenSource Language):

Java 100.0%

开源软件介绍(OpenSource Introduction):

MDPreference

Android Arsenal Release License

中文

Introduce

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

[DEPPERCATED] You should not support pre-Lollipop in 2018.

Easy to use and good effect in pre-Lollipop.

Sample

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

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.



鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap