strings.xml:错误:找到项目字符串/按钮超过一次

时间:2018-07-05 06:01:18

标签: android

strings.xml:错误:找到项目字符串/按钮超过一次 //////////////////////////如何摆脱这个问题?帮助

enter image description here

2 个答案:

答案 0 :(得分:4)

在这种情况下,不能有多个具有相同名称的字符串(“按钮”)。为它们分别命名,如下所示

var jsonData = [
  {
    "id": 1,
    "name": "<Andrew> Pougher"
  },
  {
    "id": 2,
    "name": "Michele Moore"
  },
  {
    "id": 3,
    "name": "Michele Boob"
  },
  {
    "id": 4,
    "name": "Michael Moore"
  },
  {
    "id": 5,
    "name": "George Michael"
  }
] 

答案 1 :(得分:1)

这样做:-

<resources>
    <string name="app_name">CourtCounter</string>
    <string name="button1">Button1</string>
    <string name="button2">Button2</string>
    <string name="button3">Button3</string>
</resources>