안 드 로 이 드 는 안 드 로 이 드-wheel 을 사용 하여 성 시 현 3 급 연동 을 실현 합 니 다.
다운로드 주소:https://code.google.com/p/android-wheel/ 성,시,현 3 급 연동 에 적합 하 다 는 걸 알 고 하 나 를 만 들 었 습 니 다.
먼저 효과 그림 보기:
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;
/**
*
* @author zhy
*
*/
public class CitiesActivity extends Activity implements OnWheelChangedListener
{
/**
* json , null
*/
private JSONObject mJsonObj;
/**
* WheelView
*/
private WheelView mProvince;
/**
* WheelView
*/
private WheelView mCity;
/**
* WheelView
*/
private WheelView mArea;
/**
*
*/
private String[] mProvinceDatas;
/**
* key - value - s
*/
private Map<String, String[]> mCitisDatasMap = new HashMap<String, String[]>();
/**
* key - values - s
*/
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();
}
/**
* , WheelView
*/
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);
}
/**
* , WheelView
*/
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();
}
/**
* Json , Json
*/
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
{
/**
* Throws JSONException if the mapping doesn't exist or is
* not a JSONArray.
*/
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
{
/**
* Throws JSONException if the mapping doesn't exist or
* is not a JSONArray.
*/
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;
}
/**
* assert json , json
*/
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();
}
}
/**
* change
*/
@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이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Kotlin의 기초 - 2부지난 글에서는 Kotlin이 무엇인지, Kotlin의 특징, Kotlin에서 변수 및 데이터 유형을 선언하는 방법과 같은 Kotlin의 기본 개념에 대해 배웠습니다. 유형 변환은 데이터 변수의 한 유형을 다른 데이터...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.