如何在UI上获取arrayList的ID?
我有一个arrayList
JSONArray ingredients = main.getJSONArray("ingredients");
ArrayList<String> ingredientsList = new ArrayList<>();{
for ( int i = 0; i<ingredients.length() ; i++){
ingredientsList.add(ingredients.getString(i));
}
,并且成分在XML上以TextView的形式出现
<TextView
android:id="@+id/ingredients_tv"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
我需要用配料表更新UI。