property_get

在C域的使用方法

int property_get(const char *key, char *value, const char *default_value);
int property_set(const char *key, const char *value); 
 

char buf[20]="ssssssssssss";

char tempbuf[PROPERTY_VALUE_MAX];

property_set("phone.imei",buf);

property_get("phone.imei",tempbuf,"0");


adb shell

root@rkpx3:/system # setprop app.imei     ssssssssssss                                 

root@rkpx3:/system # getprop app.imei                                      
ssssssssssss

在Java域的使用方法

String navBarOverride = SystemProperties.get("qemu.hw.mainkeys");

SystemProperties.set("service.bootanim.exit", "0");


本文来自互联网用户投稿,文章观点仅代表作者本人,不代表本站立场,不承担相关法律责任。如若转载,请注明出处。 如若内容造成侵权/违法违规/事实不符,请点击【内容举报】进行投诉反馈!

相关文章

立即
投稿

微信公众账号

微信扫一扫加关注

返回
顶部