码迷,mamicode.com
首页 > 移动开发 > 详细

android添加系统属性:Settings.system

时间:2016-08-15 17:20:08      阅读:799      评论:0      收藏:0      [点我收藏+]

标签:

Android源码开发中,常常要用到一些全局标志或者说变量,这时候我们可以给android系统添加自己想要的属性。

1.Settings.system

例如飞行模式的开启和关闭,我们就是去改变Settings.system.AIRPLANE_MODE_ON 的值

下面就介绍下我们怎样去定义一个系统属性。例如要添加一个属性名为“SILVAN_LIU”

路径:frameworks/base/core/Java/android/provider/Settings.java

public static final String SILVAN_LIU = "silvan_liu";  
public static final String[] SETTINGS_TO_BACKUP ={  

  "SILVAN_LIU"  

}  

通过Settings.System.getInt(getContentResolver(), Settings.System.SILVAN_LIU,0)SILVAN_LIU的属性值。

android添加系统属性:Settings.system

标签:

原文地址:http://www.cnblogs.com/cyqx/p/5773576.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!