我是靠谱客的博主 欢呼板凳,这篇文章主要介绍Android自定义wheelview实现滚动日期选择器,现在分享给大家,希望可以做个参考。

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

wheelview滚动效果的View

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

主页面:

第一种日期选择器页面:

动态效果:

使用:

具体的实现是一个LoopView的类,这是一个继承View的类!
理解LoopView的公开方法就可以了。

1.布局文件

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<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.控制代码

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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类里面控制字体颜色和横线颜色的地方:

复制代码
1
2
3
4
5
6
//中间选中的字体颜色: 灰色: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 
我的代码中有一个时间的工具类,可以很方便的取到任何时间,你也可以在日期选择器中多加一个按钮,设置到今天的日期。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持靠谱客。

最后

以上就是欢呼板凳最近收集整理的关于Android自定义wheelview实现滚动日期选择器的全部内容,更多相关Android自定义wheelview实现滚动日期选择器内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(468)

评论列表共有 0 条评论

立即
投稿
返回
顶部