This attribute must be localized

简介: 引用:http://blog.csdn.net/qinyun188/article/details/7466973 “This attribute must be localized”,这种问题一般情况是因为在res/layout下的文件中出现了没有多语言话的文本例如 解决办法: 在res/values/strings.xml中定义字符串on 然后再把res/layout/main.xml相应内容改成 这是android强制实行多语言话,是为了方便应用多言版本的扩充。

引用:http://blog.csdn.net/qinyun188/article/details/7466973

“This attribute must be localized”,这种问题一般情况是因为在res/layout下的文件中出现了没有多语言话的文本例如

<Button
android:id="@+id/btnLED1On"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="on"
android:layout_x="8px"
android:layout_y="42px"
>
</Button>

解决办法:

res/values/strings.xml中定义字符串
<string name="led1on">on</string>

然后再把res/layout/main.xml相应内容改成

<Button
android:id="@+id/btnLED1On"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@sring/led1on"
android:layout_x="8px"
android:layout_y="42px"
>
</Button>

这是android强制实行多语言话,是为了方便应用多言版本的扩充。

相关文章
|
5月前
|
编译器 C++ 开发者
C++一分钟之-属性(attributes)与属性语法
【7月更文挑战第3天】C++的属性(attributes)自C++11起允许附加编译器指令,如`[[nodiscard]]`和`[[maybe_unused]]`,影响优化和警告。注意属性放置、兼容性和适度使用,以确保代码清晰和可移植。示例展示了如何使用属性来提示编译器处理返回值和未使用变量,以及利用编译器扩展进行自动清理。属性是提升代码质量的工具,但应谨慎使用。
152 13
|
7月前
|
安全 计算机视觉 Python
【已解决】attributeerror: ‘FreeTypeFont‘ object has no attribute ‘getsize‘
【已解决】attributeerror: ‘FreeTypeFont‘ object has no attribute ‘getsize‘
AttributeError: ‘set‘ object has no attribute ‘items‘
出现这个问题,原因可能是定义的header有问题
179 0
|
JavaScript 前端开发
成功解决AttributeError: ‘JointGrid‘ object has no attribute ‘annotate‘
成功解决AttributeError: ‘JointGrid‘ object has no attribute ‘annotate‘
|
TensorFlow 算法框架/工具
has no attribute ‘swish‘
has no attribute ‘swish‘
160 0
|
C语言 编译器 C++