android:用于strings.xml的动态getString(R.string.report_TJ)

时间:2012-11-29 08:57:10

标签: android string variables

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

在我的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):获取资源号0x00000000的值时没有包标识符

1 个答案:

答案 0 :(得分:1)

你可以像这样使用

String imageString=report_TJ_+e.getString("artID");
getString(getResources().getIdentifier(imageString, "", getPackageName()));