背景:
有部分应用在运行时,只能在特定的兼容模式下才能正常运行。因此设计一种通用型的兼容性设置框架。方便framework读取用户配置值,从而决定是否启用兼容性配置特性。
使用步骤:
1、在boringdroidsystemui APP的raw目录comp_config.xml新增配置
eg:
代码块 |
---|
<compatible>
<keycode>isAllowHideDecorCaption</keycode>
<keydesc>{
"en":"Allow to hide the title bar",
"ch":"允许隐藏标题栏"
}</keydesc>
<defaultvalue>false</defaultvalue>
<inputtype>switch</inputtype>
<notes>
{
"en":"test text",
"ch":"测试文本"
}
</notes>
<optionjson>[]</optionjson>
</compatible> |