www.MyException.Cn发布于:2013-01-02 13:08:45浏览:380次
关于setting的string.xml里的product属性的问题
我的String.xml里有同名的string,product属性不同
<stringname="move_app_to_sdcard"product="nosdcard"msgid="4350451696315265420">"移至USB存储设备"</string>
<stringname="move_app_to_sdcard"product="default"msgid="1143379049903056407">"移至SD卡"</string>
我编译完后都是显示“移至USB存储设备”,我在哪里配置才能让“移至SD卡”这句生效呢?
------解决方案-------------------- 这个终于解决了! device文件夹下有几个device.mk 里面有一段 PRODUCT_CHARACTERISTICS:=nosdcard 将nosdcard改为default 重新编译,解决问题!
原文链接:https://www.f2er.com/xml/299123.html我的String.xml里有同名的string,product属性不同
<stringname="move_app_to_sdcard"product="nosdcard"msgid="4350451696315265420">"移至USB存储设备"</string>
<stringname="move_app_to_sdcard"product="default"msgid="1143379049903056407">"移至SD卡"</string>
我编译完后都是显示“移至USB存储设备”,我在哪里配置才能让“移至SD卡”这句生效呢?
------解决方案-------------------- 这个终于解决了! device文件夹下有几个device.mk 里面有一段 PRODUCT_CHARACTERISTICS:=nosdcard 将nosdcard改为default 重新编译,解决问题!