Error-Expected resource of type
原標題:Error-Expected resource of type styleable [ResourceType]
錯誤資訊
Expected resource of type styleable [ResourceType]
錯誤原因最近在專案中由於要使用沉浸式通知欄,所以使用了一個工具類SystemBarTintManager,而這個工具類在專案打包的過程中提示了一個錯誤:Expected resource of type styleable
解決方案在stackoverflow中發現很多人反饋這個問題,解決方案是在使用 TypedArray 的方法宣告處頂部加上 @SuppressWarnings(“ResourceType”) 忽略該警告,然後就可以正常簽名編譯。具體做法如下:
@SuppressWarnings("ResourceType")
public SystemBarTintManager(Activity activity) {
……
}
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/3209/viewspace-2799821/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Access restriction: The type 'Resource' is not API 解決辦法RESTAPI
- Laravel Resource Routes和API Resource Routes講解LaravelAPI
- 【譯】Resource Hints
- cannot convert (type interface {}) to type int: need type assertion
- DRM - Dynamic Resource MasteringAST
- Android resource linking failedAndroidAI
- Metasploit resource命令技巧
- Spring系列.Resource介面Spring
- HITSC_4_Data Type and Type Checking
- vue_resource和axiosVueiOS
- Resource is out of sync with the file system
- profile的resource limits和資源計劃resource_manager_plan的limitMIT
- [求助][iOS] 獲取 iOS 應用的 crash 報告,cpu_resource/diskwrites_resource/wakeups_resource 這些型別的如何分析iOS型別
- ApiBoot - ApiBoot Resource Load 使用文件APIboot
- Eclipse:Resource is out of sync with the file systemEclipse
- @Autowired 與@Resource的區別
- 2.7 Overview of Oracle Resource Manager in a CDBViewOracle
- Caused by: Error: ' ' is not a valid resource name characterError
- The bean ‘xxx‘, defined in class path resource , ......Bean
- Matrix原始碼分析————Resource Canary原始碼
- WPF FindResource,Resource[key] SystemColors TryFindResource
- @Autowired和@Resource的區別
- Kubernetes的Resource和Dashboard(十三)
- @Resource和@Autowired的區別
- @Autowired 和 @ Resource的區別
- JavaScript select typeJavaScript
- oracle enqueue typeOracleENQ
- type.jsJS
- Pytorch框架之tensor型別轉換(type, type_as)PyTorch框架型別
- REST – 如何抽象為資源(Resource)REST抽象
- 錯誤:bash: fork: Resource temporarily unavailableAI
- 資源路由resource index 不是get路由Index
- REST - 如何抽象為資源(Resource)REST抽象
- k8s resource的管理K8S
- 理解Maven Resource的過濾功能Maven
- @Autowired和@Resource有哪些區別
- allocator、polymorphic allocator 與 memory_resource
- Go 中 type var string 和 type var = string 的區別Go