Android自定义wheelview实现滚动日期选择器

作者:峥嵘life 时间:2021-11-22 16:04:19 

本文实例为大家分享了Android实现滚动日期选择器的具体代码,供大家参考,具体内容如下

wheelview滚动效果的View

这段时间需要用到一个时间选择器,但是不能使用日期对话框,
因为它是筛选条件框架下的,只能是View!这个WheelView改造后可以达到要求!
这个wheelview框架使用的类不多,就几个,还有一些资源文件。
我根据这个框架设计了日期的选择器。

主页面:

Android自定义wheelview实现滚动日期选择器

第一种日期选择器页面:

Android自定义wheelview实现滚动日期选择器

动态效果:

Android自定义wheelview实现滚动日期选择器

使用:

具体的实现是一个LoopView的类,这是一个继承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);
 }
 //设置是否循环播放
//  loopView.setNotLoop();
 //滚动监听
 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();
  }
 });

//设置原始数据
 loopView.setItems(list);

}

}

那个日期选择器就是使用三个LoopView结合而成的!
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);

其他的控制可以参考我的代码
我的项目的代码:wheelview滚动效果的View 
我的代码中有一个时间的工具类,可以很方便的取到任何时间,你也可以在日期选择器中多加一个按钮,设置到今天的日期。

来源:https://blog.csdn.net/wenzhi20102321/article/details/72848683

标签:Android,wheelview,日期选择器
0
投稿

猜你喜欢

  • Studio 编译报错:compileSdkVersion 'android-24' requires JDK 1.8 or later to compile.的解决办法

    2023-06-19 17:19:41
  • 两路归并的数组与链表的实现方法

    2021-10-28 04:32:15
  • 200行java代码实现2048小游戏

    2023-11-29 12:03:57
  • JavaSE的三大接口:Comparator,Comparable和Cloneable详解

    2021-09-01 03:14:20
  • SpringBoot 如何使用RestTemplate发送Post请求

    2022-03-03 09:35:47
  • C# 抓取网页内容的方法

    2022-09-13 04:50:10
  • 官方详解HDFS Balancer工具主要调优参数

    2023-07-24 04:43:47
  • 浅析SpringBoot2底层注解@Conditional@ImportResource

    2023-08-01 23:35:51
  • C#如何使用Bogus创建模拟数据示例代码

    2023-10-11 10:57:50
  • Java面试题解析之判断以及防止SQL注入

    2023-05-26 18:08:59
  • android Handler详细使用方法实例

    2022-11-29 01:35:12
  • java读取文件里面部分汉字内容乱码的解决方案

    2022-06-11 03:32:49
  • Java shiro安全框架使用介绍

    2023-07-09 05:24:35
  • java中Unsafe的使用讲解

    2022-08-02 08:08:18
  • 如何利用IDEA搭建SpringBoot项目整合mybatis实现简单的登录功能

    2022-01-15 06:14:59
  • java如何删除以逗号隔开的字符串中某一个值

    2023-06-12 11:59:19
  • SpringBoot文件访问映射如何实现

    2022-07-22 00:36:07
  • C# 复制与删除文件的实现方法

    2022-01-23 02:36:06
  • Java线程生命周期及转换过程

    2023-12-27 21:22:15
  • 你是不是这样写异常处理代码的呢?

    2022-08-08 02:10:10
  • asp之家 软件编程 m.aspxhome.com