溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Android自定義wheelview實(shí)現(xiàn)滾動(dòng)日期選擇器

發(fā)布時(shí)間:2020-10-05 17:57:06 來源:腳本之家 閱讀:410 作者:崢嶸life 欄目:移動(dòng)開發(fā)

本文實(shí)例為大家分享了Android實(shí)現(xiàn)滾動(dòng)日期選擇器的具體代碼,供大家參考,具體內(nèi)容如下

wheelview滾動(dòng)效果的View

這段時(shí)間需要用到一個(gè)時(shí)間選擇器,但是不能使用日期對(duì)話框,
因?yàn)樗呛Y選條件框架下的,只能是View!這個(gè)WheelView改造后可以達(dá)到要求!
這個(gè)wheelview框架使用的類不多,就幾個(gè),還有一些資源文件。
我根據(jù)這個(gè)框架設(shè)計(jì)了日期的選擇器。

主頁面:

Android自定義wheelview實(shí)現(xiàn)滾動(dòng)日期選擇器

第一種日期選擇器頁面:

Android自定義wheelview實(shí)現(xiàn)滾動(dòng)日期選擇器

動(dòng)態(tài)效果:

Android自定義wheelview實(shí)現(xiàn)滾動(dòng)日期選擇器

使用:

具體的實(shí)現(xiàn)是一個(gè)LoopView的類,這是一個(gè)繼承View的類!
理解LoopView的公開方法就可以了。

1.布局文件

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
       xmlns:app="http://schemas.android.com/apk/res-auto"
       android:orientation="vertical"
       android:layout_width="match_parent"
       android:layout_height="match_parent"
       android:background="#fff"
    >

  <com.example.wheelview.loopview.LoopView
    android:layout_marginTop="50dp"
    android:id="@+id/loopView"
    android:layout_width="match_parent"
    android:layout_height="150dp"
    app:awv_textsize="18"
    />

</LinearLayout>

2.控制代碼

package com.example.wheelview.activity;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Toast;
import com.example.wheelview.R;
import com.example.wheelview.loopview.LoopView;
import com.example.wheelview.loopview.OnItemSelectedListener;

import java.util.ArrayList;

public class MyActivity extends Activity {

  private Toast toast;

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    final LoopView loopView = (LoopView) findViewById(R.id.loopView);

    ArrayList<String> list = new ArrayList<String>();
    for (int i = 0; i < 15; i++) {
      list.add("item " + i);
    }
    //設(shè)置是否循環(huán)播放
//    loopView.setNotLoop();
    //滾動(dòng)監(jiān)聽
    loopView.setListener(new OnItemSelectedListener() {
      @Override
      public void onItemSelected(int index) {
        if (toast == null) {
          toast = Toast.makeText(MyActivity.this, "item " + index, Toast.LENGTH_SHORT);
        }
        toast.setText("item " + index);
        toast.show();
      }
    });

    //設(shè)置原始數(shù)據(jù)
    loopView.setItems(list);


  }

}

那個(gè)日期選擇器就是使用三個(gè)LoopView結(jié)合而成的!
LoopView類里面控制字體顏色和橫線顏色的地方:

//中間選中的字體顏色:   灰色:0xff313131,橙色:0xffec6f1a
centerTextColor = typedArray.getInteger(R.styleable.androidWheelView_awv_centerTextColor, 0xffec6f1a);
//沒被選中的字體的顏色 
outerTextColor = typedArray.getInteger(R.styleable.androidWheelView_awv_outerTextColor, 0xffafafaf);
//中間字體上下兩條橫線的顏色
dividerColor = typedArray.getInteger(R.styleable.androidWheelView_awv_dividerTextColor, 0xffc5c5c5);

其他的控制可以參考我的代碼
我的項(xiàng)目的代碼:wheelview滾動(dòng)效果的View 
我的代碼中有一個(gè)時(shí)間的工具類,可以很方便的取到任何時(shí)間,你也可以在日期選擇器中多加一個(gè)按鈕,設(shè)置到今天的日期。

以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI