我在 app_restrictions.xml 中有这个:
<restriction
android:key="int1"
android:restrictionType="integer"
android:defaultValue="0"
/>
现在,如果我想阅读它,我会得到
> java.lang.ClassCastException: java.lang.String cannot be cast to java.lang.Integer
我试过了:
RestrictionsManager rm = getApplicationContext().getSystemService(Context.RESTRICTIONS_SERVICE);
Integer val1 = rm.getApplicationRestrictions().getInt("int1");
我阅读布尔值或字符串没有问题。Google 不提供整数示例。整数限制类型完全可用吗?如果是这样:如何?