自定義時間選擇器

1.使用了NumberPickerView符喝,github上找的一個控件。使用以下依賴就好甜孤。

compile 'cn.carbswang.android:NumberPickerView:1.1.1'

2.布局使用洲劣。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >
    <TextView
        android:id="@+id/time"
        android:text="時間選擇"
        android:layout_centerHorizontal="true"
        android:gravity="center"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:layout_weight="1" />

    <LinearLayout
        android:id="@+id/picker_ll"
        android:layout_below="@+id/time"
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <cn.carbswang.android.numberpickerview.library.NumberPickerView
            android:layout_weight="1"
            android:id="@+id/picker_year"
            android:layout_width="wrap_content"
            android:layout_height="240dp"
            android:layout_centerHorizontal="true"
            android:background="#11333333"
            android:contentDescription="test_number_picker_view"
            app:npv_ItemPaddingHorizontal="5dp"
            app:npv_ItemPaddingVertical="5dp"
            app:npv_ShowCount="5"
            app:npv_RespondChangeOnDetached="false"
            app:npv_TextSizeNormal="16sp"
            app:npv_TextSizeSelected="20sp"
            app:npv_WrapSelectorWheel="true"/>



    <cn.carbswang.android.numberpickerview.library.NumberPickerView
            android:layout_weight="1"
            android:id="@+id/picker_month"
            android:layout_width="wrap_content"
            android:layout_height="240dp"
            android:layout_centerHorizontal="true"
            android:background="#11333333"
            android:contentDescription="test_number_picker_view"
            app:npv_ItemPaddingHorizontal="5dp"
            app:npv_ItemPaddingVertical="5dp"
            app:npv_ShowCount="5"
            app:npv_RespondChangeOnDetached="false"
            app:npv_TextSizeNormal="16sp"
            app:npv_TextSizeSelected="20sp"
            app:npv_WrapSelectorWheel="true"/>
        <cn.carbswang.android.numberpickerview.library.NumberPickerView
            android:layout_weight="1"
            android:id="@+id/picker_day"
            android:layout_width="wrap_content"
            android:layout_height="240dp"
            android:layout_centerHorizontal="true"
            android:background="#11333333"
            android:contentDescription="test_number_picker_view"
            app:npv_ItemPaddingHorizontal="5dp"
            app:npv_ItemPaddingVertical="5dp"
            app:npv_ShowCount="5"
            app:npv_RespondChangeOnDetached="false"
            app:npv_TextSizeNormal="16sp"
            app:npv_TextSizeSelected="20sp"
            app:npv_WrapSelectorWheel="true"/>
    </LinearLayout>
    <LinearLayout
        android:layout_below="@+id/picker_ll"
        android:layout_width="match_parent"
        android:layout_height="50dp">
        <Button
            android:id="@+id/cancle_time"
            android:background="@null"
            android:gravity="center"
            android:layout_weight="1"
            android:text="取消"
            android:layout_width="wrap_content"
            android:layout_height="match_parent" />
      <Button
            android:id="@+id/confirm_time"
            android:background="@null"
            android:gravity="center"
            android:layout_weight="1"
            android:text="確定"
            android:layout_width="wrap_content"
            android:layout_height="match_parent" />
    </LinearLayout>
</RelativeLayout>

布局效果如下:上面每個NumberPickerView代表一列备蚓。

1_0.png

2.代碼里面引用

(1)寫一個類繼承DialogFragment,重寫onCreateView方法

public class MyTimeDialog extends DialogFragment implements NumberPickerView.OnValueChangeListener {
    private static final String TAG = "MyTimeDialog";
    @BindView(R.id.picker_year)
    NumberPickerView pickerYear;
    @BindView(R.id.picker_month)
    NumberPickerView pickerMonth;
    @BindView(R.id.picker_day)
    NumberPickerView pickerDay;
    @BindView(R.id.cancle_time)
    Button cancleTime;
    @BindView(R.id.confirm_time)
    Button confirmTime;

@Nullable
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
    getDialog().requestWindowFeature(STYLE_NO_TITLE);
    View view = inflater.inflate(R.layout.my_dialog_time, null);
//使用注解囱稽,綁定控件
    ButterKnife.bind(this, view);

//給每個設(shè)置改變監(jiān)聽
    pickerYear.setOnValueChangedListener(this);
//設(shè)置展示的數(shù)據(jù)
    pickerYear.setDisplayedValues(getYear());
//最大值郊尝,長度減1
    pickerYear.setMaxValue(getYear().length-1);
//最小值,下標(biāo)位0
    pickerYear.setMinValue(0);
//設(shè)置默認(rèn)出現(xiàn)的數(shù)值战惊,這里都是數(shù)據(jù)的下標(biāo)
    pickerYear.setValue(50);
//年月日流昏,依次類推。
    pickerMonth.setOnValueChangedListener(this);
    pickerMonth.setDisplayedValues(getMonth());
    pickerMonth.setMaxValue(getMonth().length-1);
    pickerMonth.setMinValue(0);
    pickerMonth.setValue(preferences.getInt(StaticParam.USER_INFO_MONTH,5));

    pickerDay.setOnValueChangedListener(this);
    pickerDay.setDisplayedValues(getDay31());
    pickerDay.setMaxValue(getDay31().length-1);
    pickerDay.setMinValue(0);
    pickerDay.setValue(preferences.getInt(StaticParam.USER_INFO_DAY,11));

    return view;
}

(2)由于吞获,2月份有28天况凉、29天、平時的月有30天各拷,31天刁绒。下面設(shè)置了很多數(shù)據(jù)。

public static String[] getYear() {
    String[] datas=new String[100];
    for (int i=1952;i<2052;i++){
        datas[i-1952]= String.valueOf(i);
    }
    return datas;

}
public static String[] getMonth() {
    String[] datas=new String[12];
    for (int i=1;i<13;i++){
        datas[i-1]= String.valueOf(i);
    }
    return datas;
}

public static String[] getDay31() {
    String[] datas=new String[31];
    for (int i=1;i<32;i++){
        datas[i-1]= String.valueOf(i);
    }
    return datas;
}
public static String[] getDay30() {
    String[] datas=new String[31];
    for (int i=1;i<31;i++){
        datas[i-1]= String.valueOf(i);
    }
    datas[30]="";
    return datas;
}

public static String[] getDay29() {
    String[] datas=new String[31];
    for (int i=1;i<30;i++){
        datas[i-1]= String.valueOf(i);
    }
    datas[29]="";
    datas[30]="";
    return datas;
}
public static String[] getDay28() {
    String[] datas=new String[31];
    for (int i=1;i<29;i++){
        datas[i-1]= String.valueOf(i);
    }
    datas[28]="";
    datas[29]="";
    datas[30]="";
    return datas;
}

(3)這個是監(jiān)聽回調(diào)

@Override
public void onValueChange(NumberPickerView picker, int oldVal, int newVal) {
    switch (picker.getId()){
        case R.id.picker_year:
            Log.e(TAG, "onValueChange: "+"newVal=="+newVal );
            this.newValYearIndex=newVal;
            break;
        case R.id.picker_month:
            Log.e(TAG, "onValueChange: "+"newVal=="+newVal );
//如果是1烤黍、3知市、5、 7 速蕊、 8 嫂丙、 10 、12规哲,選擇31天的數(shù)據(jù)
if (this.newValMonthIndex==0||
        this.newValMonthIndex==2||
        this.newValMonthIndex==4||
        this.newValMonthIndex==6||
        this.newValMonthIndex==7||
        this.newValMonthIndex==9||
        this.newValMonthIndex==11
        ){
    pickerDay.setDisplayedValues(getDay31());
    pickerDay.setMaxValue(getDay31().length-1);
    pickerDay.setMinValue(0);
//如果是4跟啤、 6 、 9 唉锌、11隅肥,選擇是30天的數(shù)據(jù)
}else if (this.newValMonthIndex==3||
        this.newValMonthIndex==5||
        this.newValMonthIndex==8||
        this.newValMonthIndex==10){

    pickerDay.setDisplayedValues(getDay30());
    pickerDay.setMaxValue(getDay30().length-1);
    pickerDay.setMinValue(0);
//剩下的是2月份,如果是閏年,2月份數(shù)據(jù)時29天袄简,如果不是武福,二月份數(shù)據(jù)是28天。這里判斷閏年痘番,不夠準(zhǔn)確,但在我的數(shù)據(jù)范圍內(nèi)沒問題平痰。
            }else if (this.newValMonthIndex==1){
                if (this.newValYearIndex%4==0){
                    pickerDay.setDisplayedValues(getDay29());
                    pickerDay.setMaxValue(getDay29().length-1);
                    pickerDay.setMinValue(0);
                }else {
                    pickerDay.setDisplayedValues(getDay28());
                    pickerDay.setMaxValue(getDay28().length-1);
                    pickerDay.setMinValue(0);
                }
            }
            this.newValMonthIndex=newVal;
            break;
        case R.id.picker_day:
            Log.e(TAG, "onValueChange: "+"newVal=="+newVal );

                    this.newValDayIndex=newVal;
            break;
    }
}

(4)最后在點擊確定時汞舱,拿到數(shù)據(jù)。

@OnClick({R.id.cancle_time, R.id.confirm_time})
public void onClick(View view) {
    switch (view.getId()) {
        case R.id.cancle_time:
            getDialog().dismiss();
            break;
        case R.id.confirm_time:
          textView.setText(getYear()[newValYearIndex]+"/"+
                        getMonth()[newValMonthIndex]+"/"+
                         getDay31()[newValDayIndex]);
        getDialog().cancel();
        break;

3.調(diào)用方式宗雇。

public static void showTimeDialog(Activity context){
    MyTimeDialog myTimeDialog=new MyTimeDialog();
    myTimeDialog.show(context.getFragmentManager(),"myFragment");
}

4.總結(jié)
使用NumberPickerView昂芜,是核心。
在設(shè)置月份數(shù)據(jù)的時候赔蒲,讓他們長度都為31泌神,不足31的設(shè)置為空良漱,解決了,下標(biāo)異常問題欢际。

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末母市,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子损趋,更是在濱河造成了極大的恐慌患久,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,290評論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件浑槽,死亡現(xiàn)場離奇詭異蒋失,居然都是意外死亡,警方通過查閱死者的電腦和手機桐玻,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,107評論 2 385
  • 文/潘曉璐 我一進(jìn)店門篙挽,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人镊靴,你說我怎么就攤上這事铣卡。” “怎么了邑闲?”我有些...
    開封第一講書人閱讀 156,872評論 0 347
  • 文/不壞的土叔 我叫張陵算行,是天一觀的道長。 經(jīng)常有香客問我苫耸,道長州邢,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,415評論 1 283
  • 正文 為了忘掉前任褪子,我火速辦了婚禮量淌,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘嫌褪。我一直安慰自己呀枢,他們只是感情好,可當(dāng)我...
    茶點故事閱讀 65,453評論 6 385
  • 文/花漫 我一把揭開白布笼痛。 她就那樣靜靜地躺著裙秋,像睡著了一般。 火紅的嫁衣襯著肌膚如雪缨伊。 梳的紋絲不亂的頭發(fā)上摘刑,一...
    開封第一講書人閱讀 49,784評論 1 290
  • 那天,我揣著相機與錄音刻坊,去河邊找鬼枷恕。 笑死,一個胖子當(dāng)著我的面吹牛谭胚,可吹牛的內(nèi)容都是我干的徐块。 我是一名探鬼主播未玻,決...
    沈念sama閱讀 38,927評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼胡控!你這毒婦竟也來了扳剿?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,691評論 0 266
  • 序言:老撾萬榮一對情侶失蹤铜犬,失蹤者是張志新(化名)和其女友劉穎舞终,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體癣猾,經(jīng)...
    沈念sama閱讀 44,137評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡敛劝,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,472評論 2 326
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了纷宇。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片夸盟。...
    茶點故事閱讀 38,622評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖像捶,靈堂內(nèi)的尸體忽然破棺而出上陕,到底是詐尸還是另有隱情,我是刑警寧澤拓春,帶...
    沈念sama閱讀 34,289評論 4 329
  • 正文 年R本政府宣布释簿,位于F島的核電站,受9級特大地震影響硼莽,放射性物質(zhì)發(fā)生泄漏庶溶。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,887評論 3 312
  • 文/蒙蒙 一懂鸵、第九天 我趴在偏房一處隱蔽的房頂上張望偏螺。 院中可真熱鬧,春花似錦匆光、人聲如沸套像。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,741評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽夺巩。三九已至,卻和暖如春周崭,著一層夾襖步出監(jiān)牢的瞬間柳譬,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,977評論 1 265
  • 我被黑心中介騙來泰國打工休傍, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人蹲姐。 一個月前我還...
    沈念sama閱讀 46,316評論 2 360
  • 正文 我出身青樓磨取,卻偏偏與公主長得像人柿,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子忙厌,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,490評論 2 348

推薦閱讀更多精彩內(nèi)容