0

我很抱歉这个主题,但我不知道如何匹配我的问题。

在我的 strings.xml 中,我有不同的语言,例如

getString(R.string.report_TJ)

我得到了json数据

e.getString("artID")

但我需要这样的东西:

getString(R.string.report_TJ_1)

你看,最后 1. artID = 1

我该怎么做?

我这样尝试:

try{
    //String text = getString(R.string.report_TJ);
    JSONArray  earthquakes = json.getJSONArray("uTraf");
    mylist.clear();
    String report_TJ_btn = null;
            for(int i=0;i<earthquakes.length();i++){                        
                HashMap<String, String> map = new HashMap<String, String>();    
                JSONObject e = earthquakes.getJSONObject(i);

                String imageString=report_TJ_btn+e.getString("artID");

                map.put("id",  String.valueOf(i));
                map.put("first", getString(getResources().getIdentifier(imageString, "", getPackageName())) + "Stau: " + e.getString("road") + ", " + e.getString("county"));
                map.put("second", e.getString("timestamp") + ", " + e.getString("suburb"));
                mylist.add(map);            
            }       
  }

出现此错误:11-29 10:40:08.544: W/ResourceType(487): No package identifier when getting value for resource number 0x00000000

4

1 回答 1

1

你可以这样使用

String imageString=report_TJ_+e.getString("artID");
getString(getResources().getIdentifier(imageString, "", getPackageName()));
于 2012-11-29T09:01:36.433 回答