zoukankan      html  css  js  c++  java
  • This attribute must be localized”

    eclipse中编译没有问题,但是在make自己建立的项目的时候,提示了错误“This attribute must be localized”,这种问题一般情况是因为在res/xml文件夹下的中
    或者在res/layout下的文件中出现了没有多语言化的文本例如
    <TextView
    android:id="@+id/myTextView1"
    android:text="type"
    android:layout_width="fill_parent">
    </TextView>
    解决方式
    在res/values/strings.xml中定义字符串
    <string name="str_type">type</string>

    然后把上面的内容改为
    <TextView
    android:id="@+id/myTextView1"
    android:text="@string/str_type"
    android:layout_width="fill_parent">
    </TextView>
    这是android强制实行多语言化
  • 相关阅读:
    CSS3阴影 box-shadow的使用和技巧总结
    事件
    表单操作
    DOM
    BOM
    js总结1
    css3
    css图片文字相关属性
    CSS盒子模型及布局
    写博客的几个注意事项
  • 原文地址:https://www.cnblogs.com/liulaolaiu/p/11744750.html
Copyright © 2011-2022 走看看