文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Android使用android-wheel实现省市县三级联动

2022-06-06 07:43

关注

今天没事跟群里面侃大山,有个哥们说道Android Wheel这个控件,以为是Andriod内置的控件,google一把,发现是个github上的一个控件。

下载地址:https://code.google.com/p/android-wheel/    发现很适合做省市县三级联动就做了一个。

先看下效果图:

1、首先导入github上的wheel项目

2、新建个项目,然后选择记得右键->Properties->Android中将wheel添加为lib:

上面两个步骤是导入所有开源项目的过程了。

3、下面开始代码的编写:首先是省市区的json文件,放置在asserts的city.json中:

大概的格式先了解一下,一会代码会根据这样的格式解析


{"citylist":
 [{"p":"河北",
  "c":[{"n":"石家庄",
  "a":[{"s":"长安区"},{"s":"桥东区"},{"s":"鹿泉市"}]
 }]
}

 4、布局文件,比较简单就3个WheelView分别代表省,市,县,还有一个按钮:


<LinearLayout 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"
  android:background="#000000"
  android:orientation="vertical" >
  <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:layout_margin="10dp"
    android:text="请选择城市"
    android:textColor="#ffffff"
    android:textSize="20sp" />
  <LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/layout_bg"
    android:orientation="horizontal" >
    <kankan.wheel.widget.WheelView
      android:id="@+id/id_province"
      android:layout_width="0dp"
      android:layout_height="wrap_content"
      android:layout_weight="1" >
    </kankan.wheel.widget.WheelView>
    <kankan.wheel.widget.WheelView
      android:id="@+id/id_city"
      android:layout_width="0dp"
      android:layout_height="wrap_content"
      android:layout_weight="1" >
    </kankan.wheel.widget.WheelView>
    <kankan.wheel.widget.WheelView
      android:id="@+id/id_area"
      android:layout_width="0dp"
      android:layout_height="wrap_content"
      android:layout_weight="1" >
    </kankan.wheel.widget.WheelView>
  </LinearLayout>
  <Button 
 android:onClick="showChoose"
 android:layout_gravity="right"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:text="确定"
    />
</LinearLayout>

5、Activity的编写:注释相当详细,节不赘述了。


package com.example.wheel_province;
import java.io.IOException;
import java.io.InputStream;
import java.util.HashMap;
import java.util.Map;
import kankan.wheel.widget.OnWheelChangedListener;
import kankan.wheel.widget.WheelView;
import kankan.wheel.widget.adapters.ArrayWheelAdapter;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.Toast;

public class CitiesActivity extends Activity implements OnWheelChangedListener
{
 
 private JSONObject mJsonObj;
 
 private WheelView mProvince;
 
 private WheelView mCity;
 
 private WheelView mArea;
 
 private String[] mProvinceDatas;
 
 private Map<String, String[]> mCitisDatasMap = new HashMap<String, String[]>();
 
 private Map<String, String[]> mAreaDatasMap = new HashMap<String, String[]>();
 
 private String mCurrentProviceName;
 
 private String mCurrentCityName;
 
 private String mCurrentAreaName ="";
 @Override
 protected void onCreate(Bundle savedInstanceState)
 {
 super.onCreate(savedInstanceState);
 setContentView(R.layout.citys);
 initJsonData();
 mProvince = (WheelView) findViewById(R.id.id_province);
 mCity = (WheelView) findViewById(R.id.id_city);
 mArea = (WheelView) findViewById(R.id.id_area);
 initDatas();
 mProvince.setViewAdapter(new ArrayWheelAdapter<String>(this, mProvinceDatas));
 // 添加change事件
 mProvince.addChangingListener(this);
 // 添加change事件
 mCity.addChangingListener(this);
 // 添加change事件
 mArea.addChangingListener(this);
 mProvince.setVisibleItems(5);
 mCity.setVisibleItems(5);
 mArea.setVisibleItems(5);
 updateCities();
 updateAreas();
 }
 
 private void updateAreas()
 {
 int pCurrent = mCity.getCurrentItem();
 mCurrentCityName = mCitisDatasMap.get(mCurrentProviceName)[pCurrent];
 String[] areas = mAreaDatasMap.get(mCurrentCityName);
 if (areas == null)
 {
  areas = new String[] { "" };
 }
 mArea.setViewAdapter(new ArrayWheelAdapter<String>(this, areas));
 mArea.setCurrentItem(0);
 }
 
 private void updateCities()
 {
 int pCurrent = mProvince.getCurrentItem();
 mCurrentProviceName = mProvinceDatas[pCurrent];
 String[] cities = mCitisDatasMap.get(mCurrentProviceName);
 if (cities == null)
 {
  cities = new String[] { "" };
 }
 mCity.setViewAdapter(new ArrayWheelAdapter<String>(this, cities));
 mCity.setCurrentItem(0);
 updateAreas();
 }
 
 private void initDatas()
 {
 try
 {
  JSONArray jsonArray = mJsonObj.getJSONArray("citylist");
  mProvinceDatas = new String[jsonArray.length()];
  for (int i = 0; i < jsonArray.length(); i++)
  {
  JSONObject jsonP = jsonArray.getJSONObject(i);// 每个省的json对象
  String province = jsonP.getString("p");// 省名字
  mProvinceDatas[i] = province;
  JSONArray jsonCs = null;
  try
  {
   
   jsonCs = jsonP.getJSONArray("c");
  } catch (Exception e1)
  {
   continue;
  }
  String[] mCitiesDatas = new String[jsonCs.length()];
  for (int j = 0; j < jsonCs.length(); j++)
  {
   JSONObject jsonCity = jsonCs.getJSONObject(j);
   String city = jsonCity.getString("n");// 市名字
   mCitiesDatas[j] = city;
   JSONArray jsonAreas = null;
   try
   {
   
   jsonAreas = jsonCity.getJSONArray("a");
   } catch (Exception e)
   {
   continue;
   }
   String[] mAreasDatas = new String[jsonAreas.length()];// 当前市的所有区
   for (int k = 0; k < jsonAreas.length(); k++)
   {
   String area = jsonAreas.getJSONObject(k).getString("s");// 区域的名称
   mAreasDatas[k] = area;
   }
   mAreaDatasMap.put(city, mAreasDatas);
  }
  mCitisDatasMap.put(province, mCitiesDatas);
  }
 } catch (JSONException e)
 {
  e.printStackTrace();
 }
 mJsonObj = null;
 }
 
 private void initJsonData()
 {
 try
 {
  StringBuffer sb = new StringBuffer();
  InputStream is = getAssets().open("city.json");
  int len = -1;
  byte[] buf = new byte[1024];
  while ((len = is.read(buf)) != -1)
  {
  sb.append(new String(buf, 0, len, "gbk"));
  }
  is.close();
  mJsonObj = new JSONObject(sb.toString());
 } catch (IOException e)
 {
  e.printStackTrace();
 } catch (JSONException e)
 {
  e.printStackTrace();
 }
 }
 
 @Override
 public void onChanged(WheelView wheel, int oldValue, int newValue)
 {
 if (wheel == mProvince)
 {
  updateCities();
 } else if (wheel == mCity)
 {
  updateAreas();
 } else if (wheel == mArea)
 {
  mCurrentAreaName = mAreaDatasMap.get(mCurrentCityName)[newValue];
 }
 }
 public void showChoose(View view)
 {
 Toast.makeText(this, mCurrentProviceName + mCurrentCityName + mCurrentAreaName, 1).show();
 }
}

源码下载:http://xiazai.jb51.net/201608/yuanma/Androidwheel(jb51.net).rar

您可能感兴趣的文章:Android实现省市区三级联动最好用的Android省市区三级联动选择效果Android日期选择器实现年月日三级联动Android中使用开源框架Citypickerview实现省市区三级联动选择Android自定义WheelView地区选择三级联动Android省市区三级联动控件使用方法实例讲解android-wheel控件实现三级联动效果Android实现三级联动下拉框 下拉列表spinner的实例代码Android PickerView实现三级联动效果


阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-移动开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯