在xml中找不到资源

时间:2014-02-25 20:35:32

标签: android xml

我的xml上有这个错误

错误:错误:找不到与给定名称匹配的资源('^ index_0',值为'@ array / Tipo_peso')。

  <?xml version="1.0" encoding="utf-8"?>
  <resources>
 <string-array name="@string/array_tipo_conversion">
        <item>@array/Tipo_peso</item>  //here show the error
        <item>@array/Tipo_Longitud</item>
        <item>@array/Tipo_Volumen</item>
    </string-array>

    <string-array name="@string/tipos">
        <item>Peso</item>
        <item>Longitud</item>
        <item>Volumen</item>
    </string-array>

   <string-array name="@string/Tipo_peso">
    <item>Kg</item>
    <item>Gramos</item>
    <item>Onza</item>
    <item>Libras</item>
    <item>Toneladas</item>
</string-array>

这是strings.xml的文件

<string name="Tipo_Volumen">Tipo_Volumen</string>
     <string name="Tipo_Longitud">Tipo_Logitud</string>
     <string name="Tipo_peso">Tipo_peso</string>
      <string name="tipos">tipos</string>
       <string name="array_tipo_conversion">array_tipo_conversion</string>

我需要用英语和西班牙语翻译这个

1 个答案:

答案 0 :(得分:0)

您不能在以下行中使用'identifier'作为属性'name'的值:

    <string-array name="@string/Tipo_peso">

考虑一下:

    <string-array name="Tipo_peso">