android 时间滚轮怎么把选择的每个选项合并后转换成时间戳

如题所述

1、添加compile:(这个库里用到了fastjson)
compile 'cn.qqtheme.framework:WheelPicker:1.2.3'
compile 'com.alibaba:fastjson:1.2.18'1212

2、assets文件夹下添加city.json,如下图:

3、代码中使用:
/**
* 地区选择器
*/
private void showRegionPicker() {
try {
final ArrayList<AddressPicker.Province> data = new ArrayList<>();
String json = ConvertUtils.toString(getAssets().open("city.json"));
data.addAll(JSON.parseArray(json, AddressPicker.Province.class));
final AddressPicker picker
温馨提示:内容为网友见解,仅供参考
无其他回答
相似回答