Android自定义WheelView地区选择三级联动
本文实例为大家分享了wheelview地区选择三级联动的具体代码,供大家参考,具体内容如下
1. 效果
最近需要做一个地区选择的功能,但是在网上和github上找了很久都没找到满意的,然后朋友推荐了一个给我,我花了点时间把代码大致看懂并改成我想要的,并写上我的理解。效果如图:
2. 注意
a. 首先我们要明白,网上这写三级联动的demo,不管是把数据库文件放在raw还是assets中,我们都要进行复制,将这个文件复制到app目录下,即
/data/data/"+context.getpackagename()+"/databases/
至于到底放在raw还是assets中哪里好些,我也在网上查了下,见这篇博客这里点击 ,但是按照这里面说的好像.db文件最好放在assets中,但是这个demo中拿过来,原来的.db文件就是放在raw中,所以我也没改了。
b. 最重要的一点,因为我们一般都是将选择完以后的数据都要上传到服务器中,但是因为每个后台要求的不一样,所以对于这个地区的.db文件也要求不一样,所以我们最主要的是学会读取数据库文件然后通过代码形成联动,举个例子,比如美团有自己的一个数据库,我们定位湖南长沙芙蓉区,然后进行地区选择,将岳麓区上传服务器并且请求数据下来,但是我们一般不会直接上传文字,一个是怕重名,还有一个就是文字不会绝对的准确,比如两个字的地名黄山 和 黄 山,看起来都对,但是你们的后台服务器接受的参数是黄山,而且使用别人的数据库中使黄 山,那就出事了,所以我们一般都是传编码,但是每个数据库中城市编码一般都是不一样,所以我们需要找后台拿匹配的数据库文件或者js文件。如图所示,两份数据库,一份是朋友推荐自带的,例外一份是我们的。
我的数据库中省市区只有一个表,而那份却有三个表,省 市 区三个表。并且编码也不一样,可以明显看出来。
3. 干货
a. 布局就直接贴代码了,很简单,mainactivity中就一个按钮,而popupwindow中是三个wheelview,
<?xml version="1.0" encoding="utf-8"?> <linearlayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:background="#00000000" android:gravity="bottom" android:layout_width="match_parent" android:layout_height="match_parent"> <linearlayout android:id="@+id/ly_myinfo_changeaddress_child" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_alignparentbottom="true" android:background="#ffffff" android:orientation="vertical" > <relativelayout android:layout_width="match_parent" android:layout_height="44dp" > <view android:background="@color/silver" android:layout_width="match_parent" android:layout_height="0.5dp" /> <textview android:id="@+id/btn_myinfo_cancel" android:layout_width="wrap_content" android:layout_height="match_parent" android:paddingleft="18dp" android:text="取消" android:gravity="center" android:layout_alignparentleft="true" android:layout_marginright="15dip" android:textcolor="#e84515" android:textsize="14sp" /> <textview android:id="@+id/btn_myinfo_sure" android:layout_width="wrap_content" android:layout_height="match_parent" android:layout_alignparentright="true" android:gravity="center" android:text="完成" android:textcolor="#e84515" android:paddingright="18dp" android:textsize="14sp" /> </relativelayout> <view android:layout_width="match_parent" android:layout_height="1dp" android:background="#d8d8d8"/> <linearlayout android:layout_width="match_parent" android:layout_height="190dip" android:orientation="horizontal" android:gravity="center_vertical"> <guozhaohui.com.wlylocationchoose.locationchoose.wheelview android:id="@+id/provinceview" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_weight="1"/> <guozhaohui.com.wlylocationchoose.locationchoose.wheelview android:id="@+id/cityview" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_weight="1"/> <guozhaohui.com.wlylocationchoose.locationchoose.wheelview android:id="@+id/districtview" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_weight="1"/> </linearlayout> </linearlayout> </linearlayout>
b. 因为上面说了,需要将文件copy到app目录下,所以直接最好这代码在application中写,
package guozhaohui.com.wlylocationchoose; import android.app.application; import java.io.inputstream; import guozhaohui.com.wlylocationchoose.locationchoose.citydatahelper; /** * created by ${guozhaohui} on 2017/2/13. * abstract: */ public class myapplication extends application { private citydatahelper datahelper; @override public void oncreate() { super.oncreate(); /** * 放在application中,让app一启动就把raw中文件copy到 "/data/data/"+context.getpackagename()+"/databases/" * 这是app读取数据的方法,不管是将数据库文件放在raw或者assets中都是一样 */ datahelper=citydatahelper.getinstance(this); inputstream in = this.getresources().openrawresource(r.raw.city); datahelper.copyfile(in,citydatahelper.database_name,citydatahelper.databases_dir); } }
c. popupwindow不是本次的重点也直接贴代码。
view popupview = layoutinflater.from(this).inflate(r.layout.popup_locationchoose, null); mpopupwindow = new popupwindow(popupview, viewgroup.layoutparams.match_parent, viewgroup.layoutparams.wrap_content, true); mpopupwindow.settouchable(true); mpopupwindow.setfocusable(true); mpopupwindow.setoutsidetouchable(true); mpopupwindow.setanimationstyle(r.style.popup_locationchoose_bottom); // picktext = (textview)popupview.findviewbyid(r.id.tv_picktext); provinceview = (wheelview)popupview.findviewbyid(r.id.provinceview); cityview = (wheelview)popupview.findviewbyid(r.id.cityview); districtview = (wheelview)popupview.findviewbyid(r.id.districtview); //确定或者取消 btn_myinfo_sure = (textview)popupview.findviewbyid(r.id.btn_myinfo_sure); btn_myinfo_cancel = (textview) popupview.findviewbyid(r.id.btn_myinfo_cancel); btn_myinfo_cancel.setonclicklistener(this); btn_myinfo_sure.setonclicklistener(this);
设置三个wheelview的可见条目数
provinceview.setvisibleitems(7); cityview.setvisibleitems(7); districtview.setvisibleitems(7);
为三个 wheelview添加滑动事件
// 添加change事件 provinceview.addchanginglistener(this); // 添加change事件 cityview.addchanginglistener(this); // 添加change事件 districtview.addchanginglistener(this);
c. 拿到操作数据的对象sqlitedatabase
db = datahelper.opendatabase();
观察数据库文件可知这表中是根据字段level来判断省市区的,如图
同时我们也可知这省市区三个模型中的字段都是一样的,都是
private int cityid; private int parentid; private int level; private string name; private string pinyin;
不清楚的可以自己查下表,如图,我查一个省
所以我们建立一样的模型,虽然三个字段是一样的,建一个就可以了,但是为了标准最好还是建三个。
package guozhaohui.com.wlylocationchoose.locationchoose.model; public class provincemodel { private int cityid; private int parentid; private int level; private string name; private string pinyin; public int getcityid() { return cityid; } public void setcityid(int cityid) { this.cityid = cityid; } public int getparentid() { return parentid; } public void setparentid(int parentid) { this.parentid = parentid; } public int getlevel() { return level; } public void setlevel(int level) { this.level = level; } public string getname() { return name; } public void setname(string name) { this.name = name; } public string getpinyin() { return pinyin; } public void setpinyin(string pinyin) { this.pinyin = pinyin; } }
进行sql查询,将查询到的结果保存在cursor中,然后进行一行行的循环遍历,然后将遍历一行的对象添加到这个对象的集合中。这里得到省的集合。
public list<provincemodel> getprovice(sqlitedatabase db){ string sql="select * from choosecitymodel where level = 1 order by cityid"; cursor cursor = db.rawquery(sql,null); list<provincemodel> list=new arraylist<provincemodel>(); if (cursor!=null&&cursor.getcount() > 0) { while (cursor.movetonext()){ provincemodel provincemodel=new provincemodel(); provincemodel.setcityid(cursor.getint(cursor.getcolumnindex("cityid"))); provincemodel.setparentid(cursor.getint(cursor.getcolumnindex("parentid"))); provincemodel.setlevel(cursor.getint(cursor.getcolumnindex("level"))); provincemodel.setname(cursor.getstring(cursor.getcolumnindex("name"))); provincemodel.setpinyin(cursor.getstring(cursor.getcolumnindex("pinyin"))); list.add(provincemodel); } } return list; }
根据表的结构,得到相应的sql语句,希望根据上一级省的cityid得到下面的市,其实换句话说本级市的parentid就是上一级的cityid,不清楚的可以将sql语句查一遍,验证下对不对,如图
得到相应省下面市的集合
public list<citymodel> getcitybyparentid(sqlitedatabase db, string code){ string sql="select * from choosecitymodel where level = 2 and parentid = ? order by cityid"; cursor cursor = db.rawquery(sql,new string[][code]); list<citymodel> list=new arraylist<citymodel>(); if (cursor!=null&&cursor.getcount() > 0) { while (cursor.movetonext()){ citymodel citymodel=new citymodel(); citymodel.setcityid(cursor.getint(cursor.getcolumnindex("cityid"))); citymodel.setparentid(cursor.getint(cursor.getcolumnindex("parentid"))); citymodel.setlevel(cursor.getint(cursor.getcolumnindex("level"))); citymodel.setname(cursor.getstring(cursor.getcolumnindex("name"))); citymodel.setpinyin(cursor.getstring(cursor.getcolumnindex("pinyin"))); list.add(citymodel); } } return list; }
区也是一样的,直接贴代码了
public list<districtmodel> getdistrictbyid(sqlitedatabase db, string code){ //注意这里的parentid其实就是上一级的cityid string sql="select * from choosecitymodel where level = 3 and parentid = ? order by cityid"; cursor cursor = db.rawquery(sql,new string[][code]); list<districtmodel> list=new arraylist<districtmodel>(); if (cursor!=null&&cursor.getcount() > 0) { while (cursor.movetonext()){ districtmodel districtmodel=new districtmodel(); districtmodel.setcityid(cursor.getint(cursor.getcolumnindex("cityid"))); districtmodel.setparentid(cursor.getint(cursor.getcolumnindex("parentid"))); districtmodel.setlevel(cursor.getint(cursor.getcolumnindex("level"))); districtmodel.setname(cursor.getstring(cursor.getcolumnindex("name"))); districtmodel.setpinyin(cursor.getstring(cursor.getcolumnindex("pinyin"))); list.add(districtmodel); } } return list; }
d. 对弹出popuwindow显示的wheelview进行初始化,注释都写在代码里,
private void initpopdata() { //初始化数据 datahelper = citydatahelper.getinstance(this); db = datahelper.opendatabase(); provincedatas = datahelper.getprovice(db); if (provincedatas.size() > 0) { //弹出popup时,省wheelview中当前的省其实就是省集合的第一个 mcurrentprovince = provincedatas.get(0).getname(); //根据省cityid查询到第一个省下面市的集合 citydatas = datahelper.getcitybyparentid(db, provincedatas.get(0).getcityid()+""); } if (citydatas.size() > 0) { //根据市cityid查询到第一个市集合下面区的集合 districtdatas = datahelper.getdistrictbyid(db, citydatas.get(0).getcityid()+""); } //wheelview的适配器代码 provinceadapter = new provinceadapter(this, provincedatas); provinceadapter.settextsize(textsize);//设置字体大小 provinceview.setviewadapter(provinceadapter); updatecitys(); updateareas(); }
更新省下面市的wheelview内容,注释很清楚,直接上代码
private void updatecitys() { int pcurrent = provinceview.getcurrentitem(); if (provincedatas.size() > 0) { //这里是必须的的,上面得到的集合只是第一个省下面所有市的集合及第一个市下面所有区的集合 //这里得到的是相应省下面对应市的集合 citydatas = datahelper.getcitybyparentid(db, provincedatas.get(pcurrent).getcityid()+""); } else { citydatas.clear(); } citysadapter = new citysadapter(this, citydatas); citysadapter.settextsize(textsize); cityview.setviewadapter(citysadapter); if (citydatas.size() > 0) { //默认省下面 市wheelview滑动第一个,显示第一个市 cityview.setcurrentitem(0); mcurrentcity = citydatas.get(0).getname(); } else { mcurrentcity = ""; } updateareas(); }
第三个wheelview和第二个一样的,代码直接上
private void updateareas() { int ccurrent = cityview.getcurrentitem(); if (citydatas.size() > 0) { districtdatas = datahelper.getdistrictbyid(db, citydatas.get(ccurrent).getcityid()+""); } else { districtdatas.clear(); } areaadapter = new areaadapter(this, districtdatas); areaadapter.settextsize(textsize); districtview.setviewadapter(areaadapter); if (districtdatas.size() > 0) { mcurrentdistrict = districtdatas.get(0).getname(); districtview.setcurrentitem(0); } else { mcurrentdistrict = ""; } }
4. 道友留步
1).因为我朋友也是在网上哪里找到的demo,所以这原版是谁的也不知道了。
2). 源码地址这里点击
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
推荐阅读
-
Android自定义WheelView地区选择三级联动
-
Android中使用开源框架Citypickerview实现省市区三级联动选择
-
Android中使用开源框架Citypickerview实现省市区三级联动选择
-
Jquery+Ajax+xml实现中国地区选择三级联动菜单效果(推荐)
-
Angularjs自定义指令实现三级联动选择地理位置
-
Android实现城市选择三级联动
-
Angularjs自定义指令实现三级联动 选择地理位置
-
使用 Jquery+Ajax+xml制作中国地区选择三级联动菜单
-
Jquery+Ajax+xml实现中国地区选择三级联动菜单效果(推荐)
-
Angularjs自定义指令实现三级联动 选择地理位置