/**
* 根据当前的市,更新区WheelView的信息
*/
private void updateAreas() {
int pCurrent = mViewCity.getCurrentItem();
mCurrentCityName = mCitisDatasMap.get(mCurrentProviceName)[pCurrent];
String[] areas = mDistrictDatasMap.get(mCurrentCityName);
if (areas == null) {
areas = new String[] { "" };
}
mViewDistrict.setViewAdapter(new ArrayWheelAdapter<String>(this, areas));
mCurrentDistrictName = areas[0];//需要在这里加一行
mViewDistrict.setCurrentItem(0);
}
http://download.csdn.net/download/generallizhong/9699549 这是源码下载地址 但代码需要改的地方就上面那一行 /src/com/mrwujay/cascade/MainActivity
转载请注明原文地址: https://ju.6miu.com/read-1071.html