0

私は 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 は整数の例を提供していません。整数制限型はまったく使用できますか? もしそうなら:どのように?

4

2 に答える 2