-1

私はjsonをmycodeの下のhtmlタグに表示し、2つの異なるテキストビューでjsonを表示したいのですが、1行で表示してすべてのgetJSONObject(i).getString("name"));を表示したいです。太字の名前とすべて getJSONObject(i).getString( "sub_ingredients")); 単純なテキストでは 2 つのテキスト ビューを使用したくない 単一のテキスト ビューで表示したい どうしたらいいですか? HTMLタグで表示したい

              "dish_ingredient":
  [
  {"name":"Salt","sub_ingredients":""},
  {"name":"Sesame Seeds","sub_ingredients":""},
   {"name":"Calcium Sulfate","sub_ingredients":""},
  {"name":"Brown Sugar","sub_ingredients":""},
  {"name":"Salt","sub_ingredients":""},
 {"name":"Hamburger Bun","sub_ingredients":""},
 {"name":"Cheese-cultured pasteurized milk","sub_ingredients":""},
 {"name":"Hamburger Bun","sub_ingredients":"Wheat, Niacin, Eggs"}]}




  final LinearLayout table3 = (LinearLayout) findViewById(R.id.table3);

JSONArray school5 = json2.getJSONArray("dish_ingredient");

  for (int i = 0; i < school5.length(); i++) {

   row4 = getLayoutInflater().inflate(R.layout.row2, null);
  ((TextView) row4.findViewById(R.id.name)).setText(school5

                    .getJSONObject(i).getString("name"));
((TextView) row4.findViewById(R.id.subingredients))

  .setText(school5.getJSONObject(i).getString( "sub_ingredients"));

table3.addView(row4);


    }
4

1 に答える 1