gpt4 book ai didi

android - JSON数组在android中自动完成 TextView

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:53:25 26 4
gpt4 key购买 nike

我正在开发一个 Android 应用程序,我必须在其中解析 Json 数组并将其调整为自动完成 TextView 。我从我的服务器得到正确的响应,因为我是 android 和 Json 解析的新手,我不知道如何将该 json 数组解析为数组适配器并将其添加到自动完成 TextView 。

任何人都可以建议我怎么做......?

响应如下。

[
{
city: "bng",
area: "anagar",
id: 510000032
},
{
city: "bng",
area: "bnagar",
id: 510000021
},
{
city: "bng",
area: "cnagar",
id: 510000037
}
]

我希望在我的自动完成 TextView 中匹配区域。

我在布局文件中创建了自动完成 TextView 。

这就是我想要的

    public class MainActivity extends Activity {

List<String> responseList;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
AutoCompleteTextView auto1 = (AutoCompleteTextView) findViewById(R.id.autoCompleteTextView1);

new HttpGetTask().execute();

ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,
android.R.layout.simple_expandable_list_item_2, responseList);
auto1.setAdapter(adapter);
}

private class HttpGetTask extends AsyncTask<Void, Void, String> {

String URL = "http://xyz/cities.json?app_id=test";
AndroidHttpClient mClient = AndroidHttpClient.newInstance("");

@Override
protected String doInBackground(Void... params) {
HttpGet request = new HttpGet(URL);
ResponseHandler<String> responseHandler = new BasicResponseHandler();
try {
return mClient.execute(request, responseHandler);
} catch (ClientProtocolException exception) {
exception.printStackTrace();
} catch (IOException exception) {
exception.printStackTrace();
}
return null;
}

@Override
protected void onPostExecute(String result) {
try {
JSONArray json = new JSONArray(result);
Log.v("ResponseCity", result);

responseList = new ArrayList<String>();

for (int i = 0; i < json.length(); i++) {
final JSONObject e = json.getJSONObject(i);
String name = e.getString("area");
responseList.add(name);

}
} catch (JSONException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
if (null != mClient)
mClient.close();
}
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}

感谢任何建议...

最佳答案

将响应字符串添加到 List<String> 中像这样

 List<String> responseList = new ArrayList<String>();

for (int i = 0; i < json.length(); i++) {
final JSONObject e = json.getJSONObject(i);
String name = e.getString("area");
responseList.add(name);
}

现在,您可以像这样将响应列表设置为 AutoCompleteTextView

 ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,
android.R.layout.simple_dropdown_item_1line, responseList);
AutoCompleteTextView textView = (AutoCompleteTextView)
findViewById(R.id.autoCompleteTextView1);
textView.setAdapter(adapter);

关于android - JSON数组在android中自动完成 TextView ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23073627/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com