我有一个由 JSONObjects 膨胀的 ListView。它工作正常list.setOnItemClickListener
。我使用 EditText 添加了搜索工具,并在运行时搜索 JSONArray 中的项目(包含 JSONObjects)。但是搜索后,当我单击 ListView 项时,它会显示 JSONArray 中的原始位置。例如,如果我有这些项目的 ListView。
Africa
Asia
Europe
North America
South America
[ListView中item的位置为0-4,即非洲=0,南美=4]
现在,如果我使用 EditText 字段作为搜索栏,然后输入America
它,它现在将向我显示包含 2 个项目的列表视图。
North America
South America
现在ListView在运行时有两个项目,如果我点击North America
它会告诉我JSONArray的位置[0],原来是Africa
,所以,而不是向我North America
显示关于它的信息/数据,我点击了Africa
如何从 ListView Click 中获取 JSONObject 但 position-id ?
/* 填充 ListView onCreate() */
public void populateCityList() {
List<CityRowItem> rowItems;
rowItems = new ArrayList<CityRowItem>();
try {
jArray = readJSONFile();
if (jArray != null) {
for (int i = 0; i < jArray.length(); i++) {
JSONObject j1 = jArray.getJSONObject(i);
CityRowItem item = new CityRowItem(R.drawable.grain,
j1.getString("city_name_eng"),
j1.getString("city_name_alias"), R.drawable.city);
rowItems.add(item);
}
CityListAdapter myadapter = new CityListAdapter(
GetCityManual.this, R.layout.list_item_city, rowItems);
list.setAdapter(null);
list.setAdapter(myadapter);
}
}
catch (JSONException) {
;
}
}
/* 这是 onClick 监听器 */
list.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView<?> parent, View view,
int position, long id) {
try {
JSONObject j1 = jArray.getJSONObject(position);
String CityName = jsonObj.getString("city_name_eng");
Intent myIntent = new Intent(GetCityManual.this,
GetCategory.class);
myIntent.putExtra("objCity", CityName);
}
catch (JSONException e)
{
;
}
}
}
/* 这段代码反映了使用 EditText 进行搜索的功能 */
txtSearch.addTextChangedListener(new TextWatcher() {
public void onTextChanged(CharSequence s, int start, int before,
int count) {
// TODO Auto-generated method stub
}
public void beforeTextChanged(CharSequence s, int start, int count,
int after) {
}
public void afterTextChanged(Editable s) {
List<CityRowItem> rowItems;
rowItems = new ArrayList<CityRowItem>();
if (jArray != null) {
try {
for (int i = 0; i < jArray.length(); i++) {
JSONObject j1 = jArray.getJSONObject(i);
if (j1.getString("city_name_eng").toLowerCase()
.contains(s.toString().toLowerCase())) {
CityRowItem item = new CityRowItem(
R.drawable.grain, j1
.getString("city_name_eng"), j1
.getString("city_name_alias"),R.drawable.city);
rowItems.add(item);
}
CityListAdapter myadapter = new CityListAdapter(
GetCityManual.this,
R.layout.list_item_city, rowItems);
list.setAdapter(null);
list.setAdapter(myadapter);
}
}
} catch (Exception _e) {
;
}
}
}