The source code of the original Android source program (open source) does not seem to contain the following required XML layout parameters in some of the published resource files: layout_height and layout_width
Missing Attributes
Compilation Exceptions
This interrupts the compilation of the launcher, at least the independent compilation, throwing errors such as:
- Attribute
- 'layout-width' Attribute must be defined
- 'layout-height' must be defined
Note: there are many other problems that need to be solved to compile Android launcher2 , this question concerns these specific missing attributes and why are they missing?
How does Google compile its launcher and what are the values ββof LayoutParams?
So how can Google compile code when these required attributes are missing?
Also, what are the values ββthat should be used if they:
android:layout_width="fill_parent" android:layout_height="fill_parent"
or wrap_content or specific pixel values ββ- in other words, where can I get such information / what is this secret build process?
java android android-source launcher viewgroup
Cel
source share