WheelView实现上下滑动选择器
作者:Angel_jn 时间:2023-01-02 18:31:03
本文实例为大家分享了WheelView实现上下滑动选择器的具体代码,供大家参考,具体内容如下
1.获得wheel
wheel是GitHub上的一个开源控件,我们可以直接在GitHub上下载,地址https://github.com/maarek/android-wheel,下载完成之后我们可以把里边的wheel文件直接当作一个library来使用,也可以把wheel里边的Java类和xml文件拷贝到我们的项目中使用。
2.使用方法
首先我们来看看主布局文件:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:text="请选择城市" />
<LinearLayout
android:id="@+id/content"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/title"
android:background="@drawable/layout_bg"
android:orientation="horizontal" >
<kankan.wheel.widget.WheelView
android:id="@+id/province_view"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1" >
</kankan.wheel.widget.WheelView>
<kankan.wheel.widget.WheelView
android:id="@+id/city_view"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1" >
</kankan.wheel.widget.WheelView>
<kankan.wheel.widget.WheelView
android:id="@+id/area_view"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1" >
</kankan.wheel.widget.WheelView>
</LinearLayout>
<Button
android:id="@+id/confirm"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/content"
android:onClick="onClick"
android:text="确定" />
</RelativeLayout>
来源:http://blog.csdn.net/Angel_jn/article/details/53996408
标签:WheelView,滑动,选择器
0
投稿
猜你喜欢
Java中将base64编码字符串转换为图片的代码
2023-07-14 12:23:51
Java内部类知识汇总
2023-08-18 14:06:54
详解Java类库的概念以及import的使用方法
2022-04-18 06:56:54
java Spring MVC4环境搭建实例详解(步骤)
2021-11-17 05:08:08
详解Java消息队列-Spring整合ActiveMq
2022-12-31 04:15:41
android之listview悬浮topBar效果
2022-12-24 23:29:58
Eclipse git推送上传错误问题解决方案
2022-07-19 15:19:39
详解处理Java中的大对象的方法
2021-08-06 23:06:11
Java实现天天酷跑小游戏完整代码(附源码)
2021-08-03 09:43:43
Android基于HttpUrlConnection类的文件下载实例代码
2022-08-28 02:18:49
Java如何实现单链表的增删改查
2021-09-19 09:49:25
ArrayList在for循环中使用remove方法移除元素方法介绍
2022-11-20 03:50:18
举例说明Java设计模式编程中ISP接口隔离原则的使用
2023-11-20 11:07:40
java ThreadLocal使用案例详解
2022-02-01 05:14:57
C#使用SQL DataAdapter数据适配代码实例
2021-11-29 11:51:15
Springboot整合knife4j与shiro的操作
2023-08-25 08:31:42
Java简单从文件读取和输出的实例
2023-04-04 20:16:45
图解JVM垃圾内存回收算法
2023-10-13 17:24:35
java获取网络图片上传到OSS的方法
2023-10-14 23:01:07
c#中返回文章发表的时间差的示例
2021-08-18 16:51:26