Я хочу попытаться получить список продуктов питания из API и обновить AutoCompleteTextView, основываясь на этом.
Я попытался следовать ответу здесь, но безрезультатно: { ссылка }
Это мой код:
//Outside onCreate
List<String> apiFoods = new ArrayList<>();
//In onCreate
AutoCompleteTextView autocomplete = (AutoCompleteTextView) findViewById(R.id.foodActv);
final ArrayAdapter<String> autoAdapter = new ArrayAdapter<>(this, android.R.layout.simple_dropdown_item_1line, apiFoods);
autocomplete.setAdapter(autoAdapter);
autocomplete.addTextChangedListener(new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
//retrieve data s
}
@Override
public void afterTextChanged(Editable s) {
retrieveData(s);
autoAdapter.notifyDataSetChanged();
Log.d("TAG", "foodsApi is " + apiFoods);
}
});
//Below onCreate
private void retrieveData(Editable s)
{
String text = s.toString();
if(text.contains(" "))
{
text.replace(" ", "%20");
}
String url = "https://api.edamam.com/api/food-database/parser?ingr="+text+"&app_id=8ff4be18&app_key=f2bf020e6d3cf1a9989c2a2163fb720f";
new AsyncHttpClient().get(url, new AsyncHttpResponseHandler() {
@Override
public void onSuccess(int statusCode, Header[] headers, byte[] responseBody)
{
try
{
JSONObject foodNames=new JSONObject(new String(responseBody));
JSONArray jArray = foodNames.getJSONArray("hints");
for(int i = 0; i < jArray.length(); i++)
{
try
{
JSONObject hintItem = jArray.getJSONObject(i);
JSONObject foodItem = hintItem.getJSONObject("food");
String foodLabel = foodItem.getString("label");
apiFoods.add(foodLabel);
}
catch(JSONException e)
{
}
}
} catch (JSONException e)
{
e.printStackTrace();
}
}
@Override
public void onFailure(int statusCode, Header[] headers, byte[] responseBody, Throwable error) {
Toast.makeText(getApplicationContext(), "API call failed", Toast.LENGTH_SHORT).show();
}
});
}
Пример ответа API можно посмотреть здесь: https://api.edamam.com/api/food-database/parser?ingr=red&app_id=8ff4be18&app_key=f2bf020e6d3cf1a9989c2a2163fb720f
В настоящее время этот код вводит правильные названия продуктов в apiFoods ArrayList
, но не показывает варианты выбора в приложении.