由于 Context.TELEPHONY_SERVICE,Amazon Kindle 出现 MissingResourceException
MissingResourceException in Amazon Kindle due to Context.TELEPHONY_SERVICE
由于 Amazon Kindle Fire 中的以下代码,我得到了 java.util.MissingResourceException,否则它工作得很好 ->
TelephonyManager tm = (TelephonyManager) cntx.getSystemService(Context.TELEPHONY_SERVICE);
如果我遗漏了一些可以纠正的内容,请提供任何见解?
Kindle Fire 是平板电脑,因此没有任何可用的电话服务。
如果您查看 getSystemService() 的文档,它是这样的:
Returns
The service or null if the name does not exist.
由于 Amazon Kindle Fire 中的以下代码,我得到了 java.util.MissingResourceException,否则它工作得很好 ->
TelephonyManager tm = (TelephonyManager) cntx.getSystemService(Context.TELEPHONY_SERVICE);
如果我遗漏了一些可以纠正的内容,请提供任何见解?
Kindle Fire 是平板电脑,因此没有任何可用的电话服务。
如果您查看 getSystemService() 的文档,它是这样的:
Returns
The service or null if the name does not exist.