admin管理员组文章数量:1345417
I'm developing an Android app where I’ve moved only image resources (no code) into a dynamic feature module named themes. These are various background images for themes (e.g. mid_obsidian, rain_activity_background_halloween, etc.).
The base app includes a settings menu where users can change the visual appearance of the app (like a skin). When the user taps “Change Appearance”, the app checks if the themes module is installed, and downloads it on-demand using Play Core if it's not.
What works: The dynamic module installs successfully via SplitInstallManager during the appearance change flow. The resources (images) are confirmed to be present on disk after installation. When the images are included in the base module, the UI updates correctly (backgrounds change across activities).
What doesn't work: After downloading the themes module and applying a theme, the expected background images do not appear. The UI stays the same, as if the images are not found. When the exact same images are in the base module, everything works fine.
Code used to install module:
val request = SplitInstallRequest.newBuilder()
.addModule("themes")
.build()
splitInstallManager.startInstall(request)
.addOnSuccessListener { sessionId = it }
.addOnFailureListener { e ->
// Handle error
}
Code used to load drawables dynamically:
@SuppressLint("DiscouragedApi")
private fun getResourceId(name: String, defType: String): Int {
val resId = appContext.resources.getIdentifier(name, defType, appContext.packageName)
if (resId == 0) {
android.util.Log.e("AppearanceManager", "Resource NOT FOUND: $name [$defType]")
} else {
android.util.Log.d("AppearanceManager", "Found: $name [$defType] → $resId")
}
return resId
}
And I use this to apply the background, example in MainActivity:
private fun loadBackgroundImage() {
val appearanceManager = AppearanceManager.getInstance(this)
val drawableName = appearanceManager.getCurrentConfig().mainMenuBackground
val resId = appearanceManager.getResourceIdForDrawable(drawableName)
val backgroundImageView: ImageView = findViewById(R.id.backgroundImage)
if (resId != 0) {
backgroundImageView.setImageResource(resId)
} else {
backgroundImageView.setImageResource(R.drawable.mid_emerald_grove) // fallback
}
}
Also, my Application.kt uses:
override fun onCreate() {
SplitCompat.install(this)
and every other activity which is affected by the appearance change.
Module Setup:
Dynamic module: :themes
Has no code: android:hasCode="false"
Uses dist:on-demand
Listed in build.gradle.kts as:
dynamicFeatures += setOf(":themes")
本文标签:
版权声明:本文标题:android - Can't Access Drawable Resources from Dynamic Feature Module After Installing via Play Core - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743748782a2532257.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论