關於系統屬性設定Settings.System.putString

sunj2007發表於2014-03-12
1. System.getProperties().setProperty("aaa", "true");
這種設定在本應用中可以拿的到值,但在其它應用中得到的為null

2. Settings.System.putString(getContentResolver(),"aaa", "true");
這種才會寫入資料庫,成為全域性變數,在其它應用中也可以拿到值,使用相主的Settings.System.getString(getContentResolver(),“aaa”);

相關文章