这是本人第一次写博客,也是本人的第一篇博客!
有什么不足之处,希望大家多多见谅、互相请教!
本人Android新手上路,大神请轻吐槽!!!!!
省市级三级联动相信大家已经很熟悉了,网购的时候选地址就要用到这个功能。
我在网上看了很多篇关于Android省市区三级联动的文章。
个人感觉理解起来比较乱,不是很清晰,所以就打算自己写一篇,希望可以帮助到大家学习。
废话不多说,进入正题!!!
首先看一下效果图
虽然UI看起来有点简陋
但不影响功能的实现哈!!!
首先我用的是Json数据,通过不断地解析数据来实现显示的。
一、在项目目录的main目录下创建assets文件夹用来保放Json全国省市区数据txt文件
二、直接上xml布局代码、布局的话没什么好说的
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_marginBottom="10dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="省份: " />
<Spinner
android:id="@+id/province"
android:layout_width="100dp"
android:layout_height="wrap_content">
</Spinner>
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation