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");


详见

http://blog.csdn.net/xujianqun/article/details/6363318



你可能感兴趣的:(ANDROID)