Android4.0在framework中添加字符串资源的做法:直接在strings.xml中增加字符串资源后编译。但是移植到Android4.1时,在strings.xml里新增一个字符串资源后,代码中引用这个字符串ID,编译时候提示编译有错误,找不到这个字符串资源。在编译之前先做make update-api之后再编译也是没有效果的,依然会提示错误。
在strings.xml同一目录下有一个public.xml的文件,其中原本在string.xml中新增的字符串,在public.xml中找不到的,代码中引用都是会出错,所以新增的字符串资源需要在这个xml文件中加入ID。加入ID方法有两种,一种是手动加入,一种是用frameworks/base/core/res/MakeJavaSymbols.sed这个文件来自动生成。自动生成的自然没有问题,但用说明中的命令make framework 2>&1 | sed -n -f MakeJavaSymbols.sed | sort -u是不能自动生成的,网上查过这个命令的使用也没找到方法,所以只能选择手动增加。但是手动添加,添加到什么位置呢?public.xml的文件头有这样一个说明:
This file defines the binary compatibility for resources. As such,
you must be very careful when making changes here, or you will
completely break backwards compatibility with old applications.
To avoid breaking compatibility, all new resources must be placed
at the end of the list of resources of the same type. Placing a resource
in the middle of type will cause all following resources to be
assigned new resource numbers, breaking compatibility.
由此说明来看,增加字符串资源还是需要谨慎。而在public.xml这个文件中有
<java-symbol type="id" name="