Android的资源文件string.xml会出现下面同名的字符串,如下所示
Xml代码
<string name="build_type" product="tv">"智能电视"</string>
<string name="build_type" product="phone">"智能手机"</string>
不同的product就会取不同的值。
product的值在对应的device目录下的mk文件当中有定义:PRODUCT_CHARACTERISTICS := tv
这样就能根据不同的产品显示不同的值了。
网友评论