1. 如何使用Android系統屬性
1. 在system.prop裡面添加需要使用的系統屬性,添加完後需要編譯生成system.img2. 在native層,使用property_set(...)和property_get(...)來存取系統屬性3. 在java層, 使用SystemProperties.set(...)和SystemProperties.get(...)來存取系統屬性4. 在adb shell命令行,使用getprop和setprop來存取系統屬性