ejemplo, al crear esta:¿Por qué el estilo y el diseño no usan el espacio de nombres de Android?
<TextView
style="@style/blah"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello" />
<include
layout="@layout/footer"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
Posible motivo: style
y layout
se procesan en tiempo de compilación, pero no estoy 100% seguro.
EDIT:
Lo mismo con package
en el archivo AndroidManifest.xml
.