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
YES you can precompile your xml layout files and put them in the assets/ folder then package them into your jar file, then you can load them using XmlResourceParser and LayoutInflater. Other resource files such as image can also be packaged into jar like this.