It Is Possible To Include Layout And Other Resources In An Android Jar?
I'm building a jar so that other developers can use the view I create in their Android applications. I'm wondering if it is possible to use a layout resource in my jar so I can bui
Solution 1:
No, not currently. Because of the way Android packages resources in an apk, you can't include them in a jar. However, you can still share the jar with the other developers - they'll just have to manually pull in the layout files.
Solution 2:
NO you cannot you will have to specify the layout parameters within your code for the jar to be of use.
Post a Comment for "It Is Possible To Include Layout And Other Resources In An Android Jar?"