如何在应用程序中访问com.android.internal.R.bool?

时间:2013-03-06 11:21:57

标签: android android-wifi

我想访问以获取此参数

com.android.internal.R.bool.config_wifi_background_scan_support但它会出现com.android.internal.R这样的错误无法解决?

我正在尝试使用这种方式:this.getResources().getSystem().getIdentifier("config_wifi_background_scan_support","id", "android")

但我一无所获。

任何人都知道如何在com.android.internal.R.bool中获取信息?

2 个答案:

答案 0 :(得分:19)

你几乎是对的。

Resources.getSystem().getIdentifier("config_wifi_background_scan_support","bool", "android");

为您提供正确的ID。

答案 1 :(得分:-1)

com.android.internal.R是一个隐藏的Android API。

link解释了它的使用。